2 Commits

Author SHA1 Message Date
dfe2761a3a Merge branch 'fix/login-invalid-width-on-mobile' into develop
All checks were successful
ci/woodpecker/push/dockerize Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
2024-04-22 15:55:58 +02:00
58e12c991d 🐛 Fix the height and radius of the inputs 2024-04-22 15:51:01 +02:00
2 changed files with 7 additions and 1 deletions

View File

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

View File

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