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:
parent
b3c02adf76
commit
f89600a135
2 changed files with 2 additions and 2 deletions
|
|
@ -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}
|
{children}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@ export function AdminMonitor({ user }: { user: User }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PageShell user={user} padding="2rem">
|
<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 */}
|
{/* Tab bar */}
|
||||||
<div style={{
|
<div style={{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue