1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-18 10:26:04 +01:00
upscayl/renderer/styles/globals.css
2022-08-18 15:23:23 +05:30

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