more consistent line height

This commit is contained in:
Alexander 2025-06-09 18:56:29 -04:00
parent c37455d587
commit 5404ce85b4
2 changed files with 7 additions and 4 deletions

View file

@ -7,7 +7,7 @@
<link rel="stylesheet" href="/css/index.css">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<script>
const class_ = window.devicePixelRatio > 1 ? "font-body-serif" : "font-body-sans";
const class_ = `font-${window.devicePixelRatio >= 1.3 ? 'hidpi' : 'lodpi'}`;
document.documentElement.className = class_;
</script>
</head>