forked from rDrama/rDrama
1
0
Fork 0

more elegant scrollbars in chromium

master
Aevann 2023-10-02 04:27:00 +03:00
parent a5875f713e
commit 8f22a66e68
1 changed files with 18 additions and 8 deletions

View File

@ -1807,14 +1807,6 @@ button.close {
.modal-open {
overflow: hidden !important;
}
@media (min-width: 768px) {
.modal-open {
padding-right: 1.3vw;
}
.modal-open nav {
padding-right: 1.3vw;
}
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
@ -7687,3 +7679,21 @@ ul {
:not(.modal):target {
scroll-margin-top: 100px;
}
@media (min-width: 768px) {
.modal-open {
padding-right: 10px;
}
.modal-open nav {
padding-right: 10px;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #555;
}
::-webkit-scrollbar-thumb:hover {
background: #3d3d3d;
}
}