From b2e5e374bd4db66be29ceeaea69911d09e438181 Mon Sep 17 00:00:00 2001 From: Mysty <29671945+EvieePy@users.noreply.github.com> Date: Thu, 28 Nov 2024 07:45:56 +1000 Subject: [PATCH] Keep font smaller on iOS --- web/static/styles/global.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/web/static/styles/global.css b/web/static/styles/global.css index 43f123c..a9cc9ae 100644 --- a/web/static/styles/global.css +++ b/web/static/styles/global.css @@ -775,4 +775,14 @@ code { .pasteHeader { padding: 0.5rem; } -} \ No newline at end of file +} + +@media screen and (max-device-width: 480px){ + body { + -webkit-text-size-adjust: 100%; + } + + code { + -webkit-text-size-adjust: 100%; + } +}