Files
star-cloud/resources/css/app.css
sky121113 fba4f26575
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 50s
style: 自定義全域與深色模式滾動條樣式
2026-03-09 09:59:34 +08:00

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;
}
}