From 445f640d29ae076a13fcfaf75cf210433bd86d76 Mon Sep 17 00:00:00 2001 From: nikk gitanes Date: Sun, 26 May 2024 19:57:16 +0300 Subject: [PATCH] web: hide leftbar scrollbars --- web/src/components/App/style.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web/src/components/App/style.js b/web/src/components/App/style.js index fe63790..482e135 100644 --- a/web/src/components/App/style.js +++ b/web/src/components/App/style.js @@ -77,6 +77,14 @@ export const AppSidebarStyle = styled.div` background: ${sidebarBGColor}; color: ${sidebarFillColor}; white-space: nowrap; + /* hide scrollbars */ + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* Internet Explorer 10+ */ + ::-webkit-scrollbar { + display: none; /* Safari and Chrome */ + width: 0; /* Remove scrollbar space */ + background: transparent; + } svg { fill: ${sidebarFillColor};