From ff8d17536fc08466138119e5be15d08b24a9c198 Mon Sep 17 00:00:00 2001 From: gitwoz <177856586+gitwoz@users.noreply.github.com> Date: Tue, 29 Oct 2024 16:14:50 +0800 Subject: [PATCH] refactor: remove unused scrollbar correction --- src/components/Layout/styles.module.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/Layout/styles.module.css b/src/components/Layout/styles.module.css index 68cbe97044..4b8d59f23a 100644 --- a/src/components/Layout/styles.module.css +++ b/src/components/Layout/styles.module.css @@ -56,10 +56,9 @@ grid-column: content; @media (--sm-up) { - /* FIXME: page scrollbar is showed on open dialog */ - min-height: calc(100vh + 1px); - min-height: calc(var(--ivh) * 100 + 1px); - min-height: calc(100dvh + 1px); + min-height: 100vh; + min-height: calc(var(--ivh) * 100); + min-height: 100dvh; padding-bottom: 0; }