Files
jackboxpartypack-gamepicker/frontend/src/index.css

26 lines
315 B
CSS
Raw Normal View History

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;
}
@layer base {
body {
@apply antialiased;
}
2025-10-30 04:27:43 -04:00
}