From a0e29a475ff087fbbe2b18d9876b4f09152dd7b9 Mon Sep 17 00:00:00 2001 From: Roman Barlos Date: Fri, 24 Oct 2025 13:14:22 +0300 Subject: [PATCH] fix(Drawer): fix Drawer height --- src/components/Drawer/Drawer.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Drawer/Drawer.scss b/src/components/Drawer/Drawer.scss index e675a294..1d31ab56 100644 --- a/src/components/Drawer/Drawer.scss +++ b/src/components/Drawer/Drawer.scss @@ -26,7 +26,6 @@ $block: '.#{variables.$ns}drawer'; left: var(--gn-aside-header-size, 0); top: var(--gn-top-alert-height, 0); bottom: 0; - height: 100%; will-change: transform; background-color: var(--g-color-base-background); pointer-events: initial; @@ -41,11 +40,13 @@ $block: '.#{variables.$ns}drawer'; &_direction_top { bottom: auto; right: 0; + height: 100%; } &_direction_bottom { top: auto; right: 0; + height: 100%; } }