fix(ui): make admin lists usable on mobile viewports

This commit is contained in:
Steven RYDELL
2026-07-30 19:54:34 +02:00
parent d1284de415
commit 1ab574a42a
6 changed files with 49 additions and 34 deletions
+3 -3
View File
@@ -408,9 +408,9 @@ function WizardShell({ children }: { children: React.ReactNode }) {
<header className="flex items-center px-6 py-4 border-b bg-background">
<DefaultLogo />
</header>
<ScrollArea role="main" className="flex-1">
<div className="p-6">
<div className="mx-auto max-w-3xl">{children}</div>
<ScrollArea role="main" className="min-w-0 flex-1">
<div className="min-w-0 p-4 sm:p-6">
<div className="mx-auto w-full min-w-0 max-w-3xl">{children}</div>
</div>
</ScrollArea>
</div>