🐛 Fix the height and radius of the inputs

This commit is contained in:
2024-04-22 15:51:01 +02:00
parent fcf3d92cf9
commit 58e12c991d
2 changed files with 7 additions and 1 deletions

View File

@@ -202,6 +202,10 @@ body {
outline: 0px; outline: 0px;
} }
input {
font-family: inherit;
}
#main { #main {
height: 100%; height: 100%;
width: 100%; width: 100%;

View File

@@ -3,7 +3,7 @@
%base-text-input { %base-text-input {
$horizontal-padding: 1vw; $horizontal-padding: 1vw;
height: 100%; height: calc(100% - (2 * $border-normal-width));
width: calc(100% - (2 * $horizontal-padding)); width: calc(100% - (2 * $horizontal-padding));
border: $border-normal; border: $border-normal;
@@ -24,7 +24,9 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 0; border: 0;
border-radius: $border-radius;
font-size: 2vh; font-size: 2vh;