feat(webui): sticky opaque navbar/footer; scope grid to dashboard; single-scroll main with autoscroll; summarizer wraps

This commit is contained in:
Thomas Cravey 2025-08-17 14:06:34 -05:00
parent f7d97db569
commit 0dd9b072e8

View file

@ -1,5 +1,5 @@
body { padding: 0; } body { padding: 0; }
header.nav { position: sticky; top: 0; z-index: 10; padding: .6rem 1rem; border-bottom: 1px solid var(--muted-border-color); display: flex; justify-content: space-between; align-items: center; } header.nav { position: sticky; top: 0; z-index: 10; padding: .6rem 1rem; border-bottom: 1px solid var(--muted-border-color); display: flex; justify-content: space-between; align-items: center; background: var(--background-color); }
header.nav a.brand { text-decoration: none; font-weight: 600; } header.nav a.brand { text-decoration: none; font-weight: 600; }
/* Dashboard-only grid layout */ /* Dashboard-only grid layout */
.dash { display: grid; grid-template-columns: 220px 1fr; gap: 0; min-height: calc(100vh - 3rem); } .dash { display: grid; grid-template-columns: 220px 1fr; gap: 0; min-height: calc(100vh - 3rem); }