This commit is contained in:
Zacharias-Brohn
2026-01-14 21:12:11 +01:00
parent 7c4cf97254
commit aa92152144
5 changed files with 323 additions and 17 deletions
@@ -18,3 +18,16 @@
max-width: 100%;
overflow-x: auto;
}
.fadeIn {
animation: textFadeIn 0.3s ease-out forwards;
}
@keyframes textFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}