1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Custom the scrollbar on Webkit browsers

the default scrollbar on Windows looks like shit
This commit is contained in:
Cotes Chung
2021-09-14 15:54:05 +08:00
parent a603aac8e8
commit c0b8c089c2
3 changed files with 24 additions and 0 deletions

View File

@@ -53,6 +53,26 @@ body {
font-family: 'Source Sans Pro', 'Microsoft Yahei', sans-serif;
}
/* --- Scrollbar --- */
$scrollbar-size: 7px;
::-webkit-scrollbar {
width: $scrollbar-size;
height: $scrollbar-size;
}
::-webkit-scrollbar-track {
@at-root body#{&} {
-webkit-box-shadow: inset 0 0 6px var(--scrollbar-track-bg);
}
}
::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb-bg);
border-radius: calc(#{$scrollbar-size} / 2);
}
/* --- Typography --- */
h1 {