scrollbar()
스크롤바 (Scroll Bar) 믹스인
용도
사용법
.scrollbar {
@include scrollbar(rem(20), #20bebe);
}.scrollbar {
scrollbar-face-color: #20bebe;
scrollbar-track-color: #0f5656;
}
.scrollbar {
scrollbar-width: thin;
scrollbar-color: #20bebe #0f5656;
}
.scrollbar::-webkit-scrollbar {
width: 1.25rem;
height: 1.25rem;
}
.scrollbar::-webkit-scrollbar-thumb {
background: #20bebe;
border-radius: 3px;
}
.scrollbar::-webkit-scrollbar-track {
background: #0f5656;
}로직
참고
Last updated