Init rebase to Svelte and TS

This commit is contained in:
2025-11-08 09:43:14 +01:00
committed by Kamil Olszewski
parent 1af139201d
commit 4428cc7e8a
61 changed files with 12624 additions and 13 deletions

26
src/style/animations.css Normal file
View File

@@ -0,0 +1,26 @@
@theme {
--animate-loading: loading 1s ease-in-out infinite;
--animate-cursor-blink: blink 1s step-end infinite;
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes loading {
0% {
transform: scaleY(1);
}
30% {
transform: scaleY(0.35);
background-color: var(--color-loader-primary-hl);
}
60% {
transform: scaleY(1);
}
}
}