Files

52 lines
1.1 KiB
SCSS
Executable File

html, .product-subtitle {
@include mq("desktop", min) {
/* width */
&::-webkit-scrollbar {
width: 8px;
height: 4px;
}
/* Track */
&::-webkit-scrollbar-track {
background-color: rgba(#b5bdcc, 0.329);
}
/* Handle */
&::-webkit-scrollbar-thumb {
background: rgba(#2c2c2c, 1);
background-image: linear-gradient(137deg, #f8583d 0, #f8445a 100%);
}
/* Handle on hover */
&::-webkit-scrollbar-thumb:hover {
background: #2c2c2c;
background-image: linear-gradient(137deg, #f8583d 0, #f8445a 100%);
}
}
}
// .nav-item-content {
// @include mq("desktop", min) {
// /* width */
// &::-webkit-scrollbar {
// width: 8px;
// height: 4px;
// }
// /* Track */
// &::-webkit-scrollbar-track {
// background-color: rgba(#b5bdcc, 0.329);
// }
// /* Handle */
// &::-webkit-scrollbar-thumb {
// background: rgba(#2c2c2c, 1);
// }
// /* Handle on hover */
// &::-webkit-scrollbar-thumb:hover {
// background: #2c2c2c;
// }
// }
// }