Fixed email input bug

This commit is contained in:
2020-12-13 17:20:42 +01:00
parent 3be9c3b665
commit 97a1313524
+1 -7
View File
@@ -20,7 +20,7 @@ input.email_input {
border-bottom: 2px solid greenyellow; border-bottom: 2px solid greenyellow;
color: #FFF; color: #FFF;
font-size: xx-large; font-size: xx-large;
width: 100%; width: fit-content;
} }
input.password_input { input.password_input {
@@ -51,9 +51,3 @@ label {
box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2);
} }
@media only screen and (max-device-width: 1024px) {
input.email_input {
font-size: large;
}
}