1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-18 18:35:58 +01:00
upscayl/renderer/styles/globals.css
Nayam Amarshe e88100e802 Fixed UI
2022-09-01 20:28:11 +05:30

46 lines
715 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;
}
}
.animate-step-in {
animation: animate-step-in 0.6s cubic-bezier(0.07, 0.43, 0.02, 1);
}
@keyframes animate-step-in {
0% {
opacity: 0;
transform: translateY(-10px);
}
80% {
opacity: 1;
}
100% {
opacity: 1;
transform: translateY(0px);
}
}