Files
WYGIWYH/frontend/src/styles/_scrollbar.scss
Herculino Trotta 3dde44b1cd changes
2024-10-09 00:31:21 -03:00

22 lines
363 B
SCSS

@import "variables";
/* custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: $primary;
border-radius: 20px;
border: 4px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #ae8000;
}