From 37292520e46383ae56685c1bf5e6bf46fd1500ea Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 20 Aug 2022 17:53:33 -0700 Subject: [PATCH] Make text on small screens cap at 16px min size so mobile browsers don't zoom hopefully --- css/sq2bs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/sq2bs.css b/css/sq2bs.css index a2d57de..afaf5b6 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -200,10 +200,10 @@ input.equipment-input:not(.is-invalid) { @media screen and (orientation: landscape) and (max-width: 1199px) { :root { - --scaled-fontsize: 1rem; + --scaled-fontsize: max(1rem, 16px); } .scaled-font { - font-size: 1rem; + font-size: max(1rem, 16px); } .box-title {