diff options
| author | Fuwn <[email protected]> | 2026-05-15 11:59:35 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-15 11:59:35 +0000 |
| commit | 45c66eaa88aefba86bf2a75d17c0f2fcdebaae1b (patch) | |
| tree | 8f8e87423fb30e8a05348d02ce14f0d090033836 /src/routes/+layout.svelte | |
| parent | fix(a11y): drop redundant alts and the landing em dash (diff) | |
| download | due.moe-45c66eaa88aefba86bf2a75d17c0f2fcdebaae1b.tar.xz due.moe-45c66eaa88aefba86bf2a75d17c0f2fcdebaae1b.zip | |
style(card): move backdrop blur to an opt-in .card-glass modifier
Strip backdrop-filter: blur(4px) from the base .card so the ~50
in-flow surfaces (landing panels, schedule rows, tool cards, user
profile cards, badge wall, etc.) stop paying for a blur they don't
need. Introduce .card-glass for the surfaces that actually float over
other content: the sticky page header, header nav dropdowns, command
palette, title-attribute tooltips, LinkedTooltip, and HoverCover.
Popup, MediaRoulette, and Notification keep their existing
parent-overlay or solid-background treatments.
Diffstat (limited to 'src/routes/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 4aaf2159..633fdffc 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -239,7 +239,7 @@ $: { <Announcement /> <div class="container"> - <div class="card card-centered header" class:header-hidden={!isHeaderVisible}> + <div class="card card-centered card-glass header" class:header-hidden={!isHeaderVisible}> <div> <a href={root('/')} class="header-item">{$locale().navigation.home}</a><a href={root('/completed')} |