Home / Admin / Custom Scrollbar
Duplicate Snippet

Embed Snippet on Your Site

Custom Scrollbar

Adds a custom scrollbar using the theme's primary and secondary colours

<10
Code Preview
css
*::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: var(--color-content-secondary);
}
*::-webkit-scrollbar
{
	width: 1rem;
	background-color: var(--color-content-secondary);
}
*::-webkit-scrollbar-thumb
{
	border-radius: 1.5rem;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--color-content-primary);
}

Comments

Add a Comment