diff options
| author | Fuwn <[email protected]> | 2026-05-19 01:29:29 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-19 01:29:29 +0000 |
| commit | 9cd5919bd8ca87987d9bb3f735266c2398c6ce9e (patch) | |
| tree | 623ee26d41129acfe7c9b6c5e5d3a79bbb824da3 /src/lib/Landing.svelte | |
| parent | style(nav): add --base0011-strong for grounded glass on nav surfaces (diff) | |
| download | due.moe-9cd5919bd8ca87987d9bb3f735266c2398c6ce9e.tar.xz due.moe-9cd5919bd8ca87987d9bb3f735266c2398c6ce9e.zip | |
style(breakpoints): consolidate 9 ad-hoc values into 5 SCSS tokens
Adds src/styles/_breakpoints.scss with five canonical tokens
(\$bp-sm 600, \$bp-md 800, \$bp-lg 1024, \$bp-xl 1280, \$bp-2xl 1600)
and migrates all 15 @media (max-width: ...) occurrences across 9 files.
Configures vite.config.ts with scss loadPaths so any file can
@use "breakpoints" without relative paths.
Conservative rounding-up where existing values were near-duplicates:
500 and 512 collapse to 600, 768 collapses to 800, 1000 collapses to
1024. Slightly more viewports get the smaller-layout treatment in
those bands, which is usually beneficial on cramped widths.
Converts 7 Svelte files from <style> to <style lang="scss"> to access
the SCSS tokens. SCSS is a CSS superset, so existing rules stay valid.
Diffstat (limited to 'src/lib/Landing.svelte')
| -rw-r--r-- | src/lib/Landing.svelte | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/Landing.svelte b/src/lib/Landing.svelte index bca1554c..4a6fa3d7 100644 --- a/src/lib/Landing.svelte +++ b/src/lib/Landing.svelte @@ -279,7 +279,9 @@ $effect(() => { </div> {/if} -<style> +<style lang="scss"> + @use "breakpoints" as *; + .landing { display: flex; flex-direction: column; @@ -518,7 +520,7 @@ $effect(() => { } } - @media (max-width: 1000px) { + @media (max-width: $bp-lg) { .tools-and-demo { grid-template-columns: 1fr 1fr; } @@ -529,7 +531,7 @@ $effect(() => { } } - @media (max-width: 800px) { + @media (max-width: $bp-md) { .section-row, .section-row.reverse { flex-direction: column; @@ -564,7 +566,7 @@ $effect(() => { } } - @media (max-width: 500px) { + @media (max-width: $bp-sm) { .tools-and-demo { grid-template-columns: 1fr; } |