Optimize layout for large screens (> 1500px)

This commit is contained in:
dtonon 2026-02-16 20:21:54 +01:00
parent 68f25fd20f
commit f739fd32ae
3 changed files with 6 additions and 2 deletions

View file

@ -21,7 +21,7 @@
<link rel="icon" href={favicon} />
</svelte:head>
<div class="flex h-screen flex-col overflow-hidden bg-gray-100">
<div class="flex h-screen flex-col overflow-hidden max-w-[1540px] mx-auto">
<Navbar />
<div class="flex flex-1 gap-5 overflow-hidden pt-2">
<LeftSidebar {mode} {activeRoom} />

View file

@ -6,6 +6,10 @@ html {
font-size: 16px;
}
body {
background-color: var(--color-gray-100);
}
@theme {
--color-brand: #e32a6d;
--color-brand-hover: #c4205a;