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

This commit is contained in:
2024-04-22 15:55:58 +02:00
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;