small login css fix

This commit is contained in:
2024-09-28 23:27:10 +02:00
parent febd1d33f1
commit 13265e1ef3

View File

@@ -32,7 +32,7 @@ body {
transform: translate(-50%, calc(-50% - 60px)); transform: translate(-50%, calc(-50% - 60px));
background-color: #181926; background-color: #181926;
border-radius: 12px; border-radius: 12px;
width: 100%; width: calc(100dvw - 40px);
max-width: 500px; max-width: 500px;
height: fit-content; height: fit-content;
padding: 10px; padding: 10px;
@@ -55,7 +55,8 @@ body {
.sub > input { .sub > input {
margin-bottom: 5px; margin-bottom: 5px;
width: 300px; max-width: 300px;
width: 80dvw;
color: black; color: black;
} }