Allow for custom scrollbar styling

This commit is contained in:
Gabe Kangas
2022-11-13 12:37:31 -08:00
parent f348203016
commit 769f05db2c
6 changed files with 68 additions and 69 deletions

View File

@@ -5,7 +5,7 @@
grid-template-columns: 1fr auto;
width: 100%;
background-color: var(--theme-color-background-main);
@include screen(desktop) {
height: var(--content-height);
}
@@ -16,6 +16,16 @@
flex-direction: column;
}
.mainSection::-webkit-scrollbar {
width: 5px;
height: auto;
background-color: var(--theme-color-components-scrollbar-background);
}
.mainSection::-webkit-scrollbar-thumb {
background: var(--theme-color-components-scrollbar-thumb);
}
.topSection {
padding: 0;
background-color: var(--theme-color-components-video-background);
@@ -45,4 +55,3 @@
height: 100%;
grid-template-rows: 1fr auto;
}