All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 50s
51 lines
1.0 KiB
CSS
51 lines
1.0 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
/* Custom Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: theme('colors.gray.300');
|
|
border-radius: 20px;
|
|
border: 2px solid transparent;
|
|
background-clip: content-box;
|
|
}
|
|
|
|
.dark ::-webkit-scrollbar-thumb {
|
|
background-color: theme('colors.gray.600');
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: theme('colors.gray.400');
|
|
}
|
|
|
|
.dark ::-webkit-scrollbar-thumb:hover {
|
|
background-color: theme('colors.gray.500');
|
|
}
|
|
|
|
/* Firefox */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: theme('colors.gray.300') transparent;
|
|
}
|
|
|
|
.dark * {
|
|
scrollbar-color: theme('colors.gray.600') transparent;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
}
|