From 85c77b74451cf7254432bed9c742975473775561 Mon Sep 17 00:00:00 2001 From: Dakurei Date: Wed, 12 Jun 2024 19:49:19 +0200 Subject: [PATCH] [UI] Fix the display size of inputs, which is MUCH too small, and should be dependent on screen size rather than a fixed value (#2143) --- index.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.css b/index.css index 36ab3e2ea87..30e7c63d954 100644 --- a/index.css +++ b/index.css @@ -31,6 +31,11 @@ body { transform-origin: top !important; } +/* Need adjust input font-size */ +input { + font-size: 3.2rem; +} + #touchControls:not(.visible) { display: none; } @@ -244,7 +249,3 @@ input:-internal-autofill-selected { -ms-animation: blink normal 4s infinite ease-in-out; /* IE */ animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */ } - -input { - font-size: 16px; -} \ No newline at end of file