2025-10-30 04:27:43 -04:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2025-10-30 19:27:23 -04:00
|
|
|
@keyframes slideUp {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateY(100%);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-slideUp {
|
|
|
|
|
animation: slideUp 0.3s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-30 13:27:55 -04:00
|
|
|
@layer base {
|
|
|
|
|
body {
|
|
|
|
|
@apply antialiased;
|
|
|
|
|
}
|
2025-10-30 04:27:43 -04:00
|
|
|
}
|
|
|
|
|
|