FEAT: SideScroll for ListRow

This commit is contained in:
EvanLin3141
2025-02-08 00:24:37 +00:00
parent 43edc52c25
commit 318e8fb2e9
6 changed files with 178 additions and 139 deletions

View File

@@ -2,6 +2,15 @@
@tailwind components;
@tailwind utilities;
:root {
--sideBar-LightBG: white;
--sideBar-LightText: black;
--sideBar-DarkBG: black;
--sideBar-DarkText: white;
}
::-webkit-scrollbar {
width: 10px;
}

View File

@@ -0,0 +1,8 @@
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}