Files
chat-gpz/components/Chat/StreamingText.module.css
T
Zacharias-Brohn 461ccf4fee changes
2026-01-14 20:56:59 +01:00

18 lines
213 B
CSS

.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;
}
}