Merge branch 'dev'

This commit is contained in:
Jeff Emmett 2026-03-04 15:11:28 -08:00
commit 683b96e5cc
1 changed files with 10 additions and 2 deletions

View File

@ -20,11 +20,19 @@ body {
justify-content: space-between;
padding: 0 16px;
z-index: 9999;
border-bottom: 1px solid var(--rs-glass-border);
color: var(--rs-text-primary);
}
/* backdrop-filter on pseudo-element so the header doesn't create a
containing block that traps position:fixed children (e.g. app-switcher sidebar) */
.rstack-header::before {
content: '';
position: absolute;
inset: 0;
z-index: -1;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
background: var(--rs-glass-bg);
border-bottom: 1px solid var(--rs-glass-border);
color: var(--rs-text-primary);
}
.rstack-header__left {