From 843554b7ed19b9443dc03c37d75b5177af5db718 Mon Sep 17 00:00:00 2001 From: Junhao Liao Date: Sun, 1 Dec 2024 04:10:24 -0500 Subject: [PATCH] Change the CSS property `overflow-y` to `overflow` in class `.sidebar-tabs`. --- src/components/CentralContainer/Sidebar/SidebarTabs/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CentralContainer/Sidebar/SidebarTabs/index.css b/src/components/CentralContainer/Sidebar/SidebarTabs/index.css index 51b03438..379bc656 100644 --- a/src/components/CentralContainer/Sidebar/SidebarTabs/index.css +++ b/src/components/CentralContainer/Sidebar/SidebarTabs/index.css @@ -1,5 +1,5 @@ .sidebar-tabs { - overflow-y: hidden; + overflow: hidden; flex-grow: 1; width: calc(100% - var(--ylv-panel-resize-handle-width)); height: calc(100vh - var(--ylv-menu-bar-height) - var(--ylv-status-bar-height));