Current section
Files
Jump to
Current section
Files
assets/salad_ui.css
/* Scroll area */
/* firefox */
.salad-scroll-area {
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}
.salad-scroll-area:hover {
scrollbar-color: #c2c2c2 transparent;
}
/* Chrome, Edge, and Safari */
.salad-scroll-area::-webkit-scrollbar {
width: 6px;
background-color: transparent;
}
.salad-scroll-area::-webkit-scrollbar-track {
background: transparent;
border-radius: 5px;
}
.salad-scroll-area::-webkit-scrollbar-thumb {
background-color: #c2c2c2;
border-radius: 14px;
}
/* slider */
input[type="range"] {
-webkit-appearance: none;
appearance: none;
@apply w-full bg-primary bg-no-repeat bg-gradient-to-r from-secondary to-secondary rounded-lg h-2;
}
input[type="range"]::-webkit-slider-thumb,
input[type="range"]::-moz-range-thumb {
-webkit-appearance: none;
appearance: none;
@apply w-5 h-5 bg-background border-2 border-primary rounded-full;
}