26 lines
419 B
CSS
26 lines
419 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-gray-50 text-gray-900;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
@keyframes fade-slide-in {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(24px) scale(0.96);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
.animate-fade-slide-in {
|
|
animation: fade-slide-in 1200ms ease-out both;
|
|
}
|
|
}
|