Created
July 28, 2022 12:30
-
-
Save olegpolyakov/348c5579055bf2bcaa9e7197cb657f41 to your computer and use it in GitHub Desktop.
CSS Scrolling Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* The basics */ | |
.scroll-container { | |
overflow: auto; | |
scrollbar-width: thin; | |
scrollbar-color: hsl(0 0% 50%); | |
/* postcss-scrollbar will add the -webkit version automatically! */ | |
} | |
/* Theming scrollbars */ | |
html { | |
/* defer to OS preference */ | |
color-scheme: dark light; | |
/* override, assuming the theme toggler sets a data-theme attribute */ | |
&[data-theme=light] { color-scheme: light; } | |
&[data-theme=dark] { color-scheme: dark; } | |
} | |
@media (pointer: fine) { | |
.scroll-container { | |
/* ...custom scrollbar styles only for desktop */ | |
} | |
} | |
/* Preventing layout shift */ | |
.scroll-container { | |
overflow: scroll; | |
@supports (scrollbar-gutter: stable) { | |
overflow: auto; | |
scrollbar-gutter: stable; | |
} | |
} | |
/* Scroll padding */ | |
.scroll-container { | |
scroll-padding-top: var(--header-height); | |
} | |
/* Scroll behavior */ | |
@media (prefers-reduced-motion: no-preference) { | |
.scroll-container { | |
scroll-behavior: smooth; | |
} | |
} | |
/* Overscroll behavior */ | |
.scroll-container { | |
overscroll-behavior: contain; | |
} | |
/* Scroll snapping */ | |
.scroll-container { | |
scroll-snap-type: x mandatory; | |
& > * { | |
scroll-snap-align: start; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment