diff options
| author | Fuwn <[email protected]> | 2025-06-23 12:48:45 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-23 12:48:45 +0000 |
| commit | 0d0c65cd83a942812bcba29e709c82469f64d9a6 (patch) | |
| tree | f0adc8093c401fc7d7a380609db992d915ce540d | |
| parent | chore: Bump version minor (diff) | |
| download | september-0d0c65cd83a942812bcba29e709c82469f64d9a6.tar.xz september-0d0c65cd83a942812bcba29e709c82469f64d9a6.zip | |
feat(css): Proportional line-height to font-size scaling
| -rw-r--r-- | default.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.css b/default.css index 7d70d73..cc50ae0 100644 --- a/default.css +++ b/default.css @@ -18,7 +18,7 @@ body { color: var(--fg); font-family: var(--font-monospace); font-size: var(--font-size); - line-height: 1rem; + line-height: math(1rem / var(--font-size)); } h1, |