web: hide leftbar scrollbars

This commit is contained in:
nikk gitanes
2024-05-26 19:57:16 +03:00
parent ac695b2b8b
commit 445f640d29

View File

@@ -77,6 +77,14 @@ export const AppSidebarStyle = styled.div`
background: ${sidebarBGColor}; background: ${sidebarBGColor};
color: ${sidebarFillColor}; color: ${sidebarFillColor};
white-space: nowrap; 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 { svg {
fill: ${sidebarFillColor}; fill: ${sidebarFillColor};