[Misc] Fix a couple of login style issues (#892)

This commit is contained in:
Cinder 2025-02-05 00:14:24 -08:00 committed by GitHub
parent 0ee3307743
commit a128837b1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View File

@ -117,6 +117,12 @@ nav.navigation {
font-size: 1.5rem;
}
}
@include window-smaller-than(32rem) {
&.sign-in .simple-avatar-image {
background: themed("color-foreground");
}
}
}
}
}

View File

@ -249,8 +249,9 @@ div#c-users {
div.input {
input[type="text"], input[type="email"], input[type="password"], select {
width: 100%;
max-width: unset;
// z_responsive is the absolute worst
width: 100% !important;
max-width: unset !important;
box-sizing: border-box;
}
}