From df3ff0d9551f3f5fa85a90b9dc48661cede2b772 Mon Sep 17 00:00:00 2001 From: Areg Hakobyan Date: Wed, 17 Dec 2025 17:20:37 +0400 Subject: [PATCH 1/2] fix(ScrollBar): boundries exceeding --- src/components/atoms/Scrollbar/Scrollbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/atoms/Scrollbar/Scrollbar.scss b/src/components/atoms/Scrollbar/Scrollbar.scss index 834ca3a4..29f824b2 100644 --- a/src/components/atoms/Scrollbar/Scrollbar.scss +++ b/src/components/atoms/Scrollbar/Scrollbar.scss @@ -105,7 +105,7 @@ &_x { width: 100%; bottom: 0; - inset-inline-start: 0; + inset-inline-start: var(--guit-ref-spacing-3xsmall); height: 0.6rem; } From 0f0fee34662d5052ad434ad6c5372eb8999e6d9a Mon Sep 17 00:00:00 2001 From: Areg Hakobyan Date: Thu, 18 Dec 2025 13:47:03 +0400 Subject: [PATCH 2/2] fix(ScrollBar): remove redundant styles for scroll track --- src/components/atoms/Scrollbar/Scrollbar.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/atoms/Scrollbar/Scrollbar.scss b/src/components/atoms/Scrollbar/Scrollbar.scss index 29f824b2..fb4b50a4 100644 --- a/src/components/atoms/Scrollbar/Scrollbar.scss +++ b/src/components/atoms/Scrollbar/Scrollbar.scss @@ -70,7 +70,7 @@ z-index: 100; overflow: hidden; border-radius: var(--guit-ref-radius-3xsmall); - inset-inline-end: var(--guit-ref-spacing-4xsmall); + inset-inline-end: 0; bottom: var(--guit-ref-spacing-3xsmall) !important; &_direction { @@ -105,7 +105,7 @@ &_x { width: 100%; bottom: 0; - inset-inline-start: var(--guit-ref-spacing-3xsmall); + inset-inline-start: 0; height: 0.6rem; }