Post
SCSS
body {
font-family: "Lato", "Pretendard", "Dotum", sans-serif;
height: 2000px;
font-size: 16px;
color: #111;
&::-webkit-scrollbar {
width: 5px;
}
&::-webkit-scrollbar-track {
background-color: white;
}
&::-webkit-scrollbar-thumb {
background-color: black;
border-radius: 100px;
}
}
스크롤바용. 「&::-」 커맨드로 입력 가능하며 이러한 vendor preffix는 webkit에서만 적용 가능. 구형 브라우저에서는 못씀
ON BROWSER

'CSS & SCSS related' 카테고리의 다른 글
| SCSS before & after Bar (0) | 2023.01.20 |
|---|---|
| SCSS Translate (0) | 2023.01.20 |
| CSS Examples Flex Grow (0) | 2023.01.19 |
| CSS Background image (0) | 2023.01.19 |
| CSS Custom Variables (0) | 2023.01.19 |