[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)

This commit is contained in:
Dakurei 2024-06-12 19:49:19 +02:00 committed by GitHub
parent fe7ed72afa
commit 85c77b7445
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 4 deletions

View File

@ -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;
}