19 lines
No EOL
429 B
CSS
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;
|
|
}
|
|
} |