aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-06-23 13:01:03 +0000
committerFuwn <[email protected]>2025-06-23 13:01:03 +0000
commit91675d6504d7e4a4f284015eb22be36433246da0 (patch)
tree47512207cd5b6572166e1913f64ad812e9ef7af8
parentfeat(css): Proportional line-height to font-size scaling (diff)
downloadseptember-91675d6504d7e4a4f284015eb22be36433246da0.tar.xz
september-91675d6504d7e4a4f284015eb22be36433246da0.zip
feat(css): Responsive font size
-rw-r--r--default.css8
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 {