Files
jackboxpartypack-gamepicker/frontend/src/index.css
2025-10-30 19:27:23 -04:00

26 lines
315 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@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;
}
}