diff options
| author | Fuwn <[email protected]> | 2025-06-23 13:01:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-23 13:01:03 +0000 |
| commit | 91675d6504d7e4a4f284015eb22be36433246da0 (patch) | |
| tree | 47512207cd5b6572166e1913f64ad812e9ef7af8 /default.css | |
| parent | feat(css): Proportional line-height to font-size scaling (diff) | |
| download | september-91675d6504d7e4a4f284015eb22be36433246da0.tar.xz september-91675d6504d7e4a4f284015eb22be36433246da0.zip | |
feat(css): Responsive font size
Diffstat (limited to 'default.css')
| -rw-r--r-- | default.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/default.css b/default.css index cc50ae0..4e111bb 100644 --- a/default.css +++ b/default.css @@ -10,7 +10,13 @@ --highlight: var(--primary); --logo: var(--primary); --font-monospace: "Fira Mono", monospace; - --font-size: 13.5px; + --font-size: auto; +} + +@media (max-width: 600px) { + :root { + --font-size: 13.5px; + } } body { |