2022-01-08
.scroll {
overflow: scroll;
&::-webkit-scrollbar {
width: 13px;
height: 13px;
cursor: pointer;
background-color: transparent;
}
&::-webkit-scrollbar-corner {
display: none;
}
&::-webkit-scrollbar-thumb {
background: {
color: #bdbdbd;
clip: padding-box;
};
border: {
width: 4px;
style: solid;
color: transparent;
radius: 20px;
}
cursor: pointer;
-webkit-transition: background-color 0.5s;
}
}