From a128837b1f10142882278cd20cd17e6e4e9ac725 Mon Sep 17 00:00:00 2001 From: Cinder Date: Wed, 5 Feb 2025 00:14:24 -0800 Subject: [PATCH] [Misc] Fix a couple of login style issues (#892) --- app/javascript/src/styles/common/navigation.scss | 6 ++++++ app/javascript/src/styles/specific/users.scss | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/app/javascript/src/styles/common/navigation.scss b/app/javascript/src/styles/common/navigation.scss index 7f3581411..6e383dcd1 100644 --- a/app/javascript/src/styles/common/navigation.scss +++ b/app/javascript/src/styles/common/navigation.scss @@ -117,6 +117,12 @@ nav.navigation { font-size: 1.5rem; } } + + @include window-smaller-than(32rem) { + &.sign-in .simple-avatar-image { + background: themed("color-foreground"); + } + } } } } diff --git a/app/javascript/src/styles/specific/users.scss b/app/javascript/src/styles/specific/users.scss index a3bbd9205..0108e4c8c 100644 --- a/app/javascript/src/styles/specific/users.scss +++ b/app/javascript/src/styles/specific/users.scss @@ -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; } }