small ui improvements

This commit is contained in:
kritzl 2026-05-15 11:43:45 +02:00
commit 281682531a
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM
4 changed files with 20 additions and 6 deletions

View file

@ -1,6 +1,19 @@
@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;
}
}