- Consolidated all modal-related styles into Modal.module.css; ValidationModal.module.css is now deprecated - All main action/navigation buttons in NewGame and GameDetail use global .btn/.nav-buttons utility classes - Removed duplicate utility classes from component CSS files - Fixed .fullscreenToggle class naming for consistency - Cleaned up component CSS to only contain component-specific styles - Updated GameCompletionModal to use shared modal styles This ensures DRY, maintainable, and consistent styling across the app.
24 lines
545 B
CSS
24 lines
545 B
CSS
/* GameHistory-specific styles only. Shared utility classes are now in global CSS. */
|
|
.screen {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
display: none;
|
|
opacity: 0;
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.screen-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.screen-title {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
} |