fix(v3): remove leftover v2 grid layout on #app constraining sidebar to 260px

This commit is contained in:
Hibryda 2026-03-08 01:36:23 +01:00
parent 27cc50fb9c
commit 50eef73429
3 changed files with 49 additions and 35 deletions

View file

@ -23,23 +23,6 @@ html, body {
#app {
height: 100%;
width: 100%;
display: grid;
grid-template-columns: var(--sidebar-width) 1fr;
grid-template-rows: 1fr auto;
}
/* Ultrawide: show right panel */
@media (min-width: 3440px) {
#app {
grid-template-columns: var(--sidebar-width) 1fr var(--right-panel-width);
}
}
/* Narrow: collapse sidebar to icons */
@media (max-width: 1200px) {
#app {
grid-template-columns: 48px 1fr;
}
}
::-webkit-scrollbar {