This commit is contained in:
Zacharias-Brohn
2026-01-14 20:56:59 +01:00
parent cadab7aaef
commit 461ccf4fee
4 changed files with 93 additions and 23 deletions
+17
View File
@@ -0,0 +1,17 @@
.streamingText {
white-space: pre-wrap;
word-wrap: break-word;
}
.fadeIn {
animation: textFadeIn 0.3s ease-out forwards;
}
@keyframes textFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}