feat: add scroll bar styling to sidebar and main sections

This commit is contained in:
Stevan Freeborn
2023-04-17 21:54:11 -05:00
parent 501634e246
commit 248074e3ae
9 changed files with 57 additions and 0 deletions
+18
View File
@@ -6,6 +6,24 @@
align-items: center;
margin: 0 auto;
overflow-y: auto;
scrollbar-color: transparent #0b3766;
}
.container::-webkit-scrollbar {
background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 10px;
}
.container:hover::-webkit-scrollbar-thumb {
background-color: #0b3766;
}
.container:hover::-webkit-scrollbar {
background-color: #043160;
}
.divider {
+15
View File
@@ -4,6 +4,21 @@
height: 100%;
border-right: 1px solid #848586;
padding: 1rem;
overflow: auto;
scrollbar-color: transparent #0b3766;
}
.container::-webkit-scrollbar {
background-color: transparent;
}
.container::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 10px;
}
.container:hover::-webkit-scrollbar-thumb {
background-color: #0b3766;
}
.link {