mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-18 10:26:04 +01:00
29 lines
443 B
CSS
29 lines
443 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
::-webkit-scrollbar {
|
|
@apply w-3;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
@apply rounded-full bg-neutral-700;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply rounded-full bg-neutral-500;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
@apply rounded-full bg-neutral-400;
|
|
}
|
|
|
|
}
|
|
|
|
@layer utilities {
|
|
.animate {
|
|
@apply transition-all duration-300 ease-in-out;
|
|
}
|
|
}
|