fix: editor max width

This commit is contained in:
DIYgod 2023-04-14 23:31:33 +01:00
parent d16a455ed6
commit cc64b4ff14
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -349,7 +349,9 @@ export function DashboardLayout({
</DashboardSidebar>
)}
<div className={`${isMobileLayout ? "pt-16 flex-1" : "flex-1"}`}>
<div
className={`${isMobileLayout ? "pt-16 flex-1" : "flex-1 min-w-0"}`}
>
{children}
</div>
</div>