feat: create StandardGameLayout for perfect viewport sizing

- Ensures exact 100vh height with no scrolling (vertical or horizontal)
- Navigation never covers game elements with safe area padding (80px top)
- Perfect viewport fit on all devices
- Consistent experience across all games

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-09-28 11:21:06 -05:00
parent 9ef72d7e88
commit 728a92076a

View File

@@ -0,0 +1,43 @@
'use client'
import { ReactNode } from 'react'
import { css } from '../../styled-system/css'
interface StandardGameLayoutProps {
children: ReactNode
className?: string
}
/**
* Standard game layout that ensures:
* 1. Exact 100vh height with no scrolling (vertical or horizontal)
* 2. Navigation never covers game elements (safe area padding)
* 3. Perfect viewport fit on all devices
* 4. Consistent experience across all games
*/
export function StandardGameLayout({ children, className }: StandardGameLayoutProps) {
return (
<div className={css({
// Exact viewport sizing - no scrolling ever
height: '100vh',
width: '100vw',
overflow: 'hidden',
// Safe area for navigation (fixed at top: 4px, right: 4px)
// Navigation is ~60px tall, so we need padding-top of ~80px to be safe
paddingTop: '80px',
paddingRight: '4px', // Ensure nav doesn't overlap content on right side
paddingBottom: '4px',
paddingLeft: '4px',
// Box sizing to include padding in dimensions
boxSizing: 'border-box',
// Flex container for game content
display: 'flex',
flexDirection: 'column'
}, className)}>
{children}
</div>
)
}