style(ui): hide scrollbar in left column
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-07-13 20:48:28 +02:00
parent 047fe5e833
commit 7f1b26a59c
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -261,6 +261,12 @@ function createDropdown() {
align-items: center;
gap: 1.5dvh;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
#left-column-top::-webkit-scrollbar, #left-column-bottom::-webkit-scrollbar {
display: none;
}
#left-column-bottom {
@ -331,4 +337,4 @@ function createDropdown() {
color: var(--primary-highlighted-color)
}
</style>
</style>