Force desktop width on AdminMonitor — admin tool not suited to mobile layout

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-21 09:37:56 +00:00
parent b3c02adf76
commit f89600a135
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ export function PageShell({ user, children, padding = '1.5rem 2rem' }: Props) {
</>
)}
<main style={{ flex: 1, overflowY: 'auto', padding }}>
<main style={{ flex: 1, overflow: 'auto', padding }}>
{children}
</main>
</div>

View file

@ -239,7 +239,7 @@ export function AdminMonitor({ user }: { user: User }) {
return (
<PageShell user={user} padding="2rem">
<div style={{ flex: 1, display: 'flex', flexDirection: 'column', overflow: 'hidden' }}>
<div style={{ flex: 1, display: 'flex', flexDirection: 'column', overflow: 'hidden', minWidth: '900px' }}>
{/* Tab bar */}
<div style={{