From ecc9f366a65af1e8656077a9510667363e72fd5c Mon Sep 17 00:00:00 2001 From: Kamiya <58339640+kamiya10@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:50:52 +0800 Subject: [PATCH] fix: saved account scrollbar (#726) fixes: #724 should contains no side effects --- html/src/app.scss | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/html/src/app.scss b/html/src/app.scss index 3ef64a29..04aff09e 100644 --- a/html/src/app.scss +++ b/html/src/app.scss @@ -189,8 +189,7 @@ a { .x-login-form-container { display: grid; gap: 8px; - justify-items: center; - height: fit-content; + height: 375px; } .x-login-form-container:has(> div:nth-child(3)) { @@ -198,9 +197,9 @@ a { } .x-login-form-container > div { - position: relative; - height: fit-content; - max-width: 280px; + display: flex; + flex-direction: column; + min-height: 0; padding: 16px; }