diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-23 18:57:43 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-23 18:57:43 +0100 |
commit | 9a14e9352453a512b05de26027355453e2bf6305 (patch) | |
tree | 779a3615195a839741e4d2292180d413efdc3a2f | |
parent | cbaaad38c9e3775a60ac1a2868706cfa784b307f (diff) |
Inrease font size for small devices
-rw-r--r-- | src/http/static/mediocre.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/http/static/mediocre.css b/src/http/static/mediocre.css index 0187543..27dd963 100644 --- a/src/http/static/mediocre.css +++ b/src/http/static/mediocre.css @@ -61,6 +61,12 @@ html { font-size: 1em; } +@media (max-width: 800px) { + html { + font-size: 1.3em; + } +} + header { background: var(--nc-bg-1); font-size: 1.5rem; |