Files
voyage/apps/public-web/app/global.css
2026-01-24 19:40:20 +01:00

27 lines
410 B
CSS

@import "tailwindcss/preflight";
@import "tailwindcss/utilities";
@keyframes move-horizontal {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
@keyframes marquee {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
/* Minimal default to keep things clean */
html, body {
height: 100%;
}