dooris/app/src/styles/global.css
2026-05-15 11:46:07 +02:00

19 lines
No EOL
429 B
CSS

@import "tailwindcss";
@plugin "@tailwindcss/typography";
@plugin "daisyui" {
themes: light --default, dark --prefersdark;
}
.shimmer {
background-image: linear-gradient(60deg, transparent 30%, rgba(100%,100%,100%,0.2) 50%, transparent 70%);
background-size: 300%;
background-position-x: 100%;
animation: shimmer 2s infinite linear;
}
@keyframes shimmer {
to {
background-position-x: 0;
}
}