@nuxt/ui-pro
Version:
Ship beautiful web applications at the speed of light with Nuxt UI Pro.
27 lines (22 loc) • 451 B
CSS
.nuxt-ui-scrollbars {
& ::-webkit-scrollbar {
width: 0.6em;
height: 0.6em;
@apply bg-transparent;
}
& ::-webkit-scrollbar-track {
@apply bg-gray-100;
}
& ::-webkit-scrollbar-thumb {
border-radius: 0.6em;
@apply bg-gray-300 hover:bg-gray-400;
}
&.dark {
& ::-webkit-scrollbar-track {
@apply bg-gray-800;
}
& ::-webkit-scrollbar-thumb {
@apply bg-gray-700 hover:bg-gray-600;
}
}
}