fix: prevent content overflow on right side of screen
Fixes #23 - Added overflow-x-hidden to body in root layout as defensive measure - Changed table containers from overflow-hidden to overflow-x-auto in admin/players page and RankingsClient (3 tables) - Added min-w-0 and overflow-hidden to Navigation flex containers to prevent links from pushing content off screen - Added flex-shrink-0 to EuchreCamp wordmark link
This commit is contained in:
+1
-1
@@ -22,7 +22,7 @@ export default function RootLayout({
|
||||
lang="en"
|
||||
className={`${inter.variable} h-full antialiased`}
|
||||
>
|
||||
<body className="min-h-full flex flex-col">
|
||||
<body className="min-h-full flex flex-col overflow-x-hidden">
|
||||
<SessionProvider>
|
||||
{children}
|
||||
<Footer />
|
||||
|
||||
Reference in New Issue
Block a user