forked from drowl87/hextra_mirror
22 lines
551 B
CSS
22 lines
551 B
CSS
![]() |
.hextra-scrollbar {
|
||
|
scrollbar-width: thin; /* Firefox */
|
||
|
scrollbar-color: oklch(55.55% 0 0 / 40%) transparent; /* Firefox */
|
||
|
|
||
|
scrollbar-gutter: stable;
|
||
|
&::-webkit-scrollbar {
|
||
|
@apply w-3 h-3;
|
||
|
}
|
||
|
&::-webkit-scrollbar-track {
|
||
|
@apply bg-transparent;
|
||
|
}
|
||
|
&::-webkit-scrollbar-thumb {
|
||
|
@apply rounded-[10px];
|
||
|
}
|
||
|
&:hover::-webkit-scrollbar-thumb {
|
||
|
border: 3px solid transparent;
|
||
|
background-color: var(--tw-shadow-color);
|
||
|
background-clip: content-box;
|
||
|
@apply shadow-neutral-500/20 hover:shadow-neutral-500/40;
|
||
|
}
|
||
|
}
|