From a795f48cab00810e346d438d70e23d7aede42967 Mon Sep 17 00:00:00 2001 From: Hoang Kiem Date: Mon, 12 Feb 2024 20:49:58 +0700 Subject: [PATCH] fix: #2622 drawer-end makes horizontal scrollbar permanently visible (#2630) * fix: #2622 drawer-end makes horizontal scrollbar permanently visible + Updated src/components/styled/drawer.css to add overflow-hidden * chore: use overflow-x-hidden instead of overflow-hidden to drawer component --- src/components/styled/drawer.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/styled/drawer.css b/src/components/styled/drawer.css index 93e87e41d7c..72a7814a262 100644 --- a/src/components/styled/drawer.css +++ b/src/components/styled/drawer.css @@ -1,6 +1,7 @@ .drawer { width: 100%; &-side { + @apply overflow-x-hidden; & > .drawer-overlay { @apply cursor-pointer bg-transparent transition-colors duration-200 ease-out; }