18 lines
213 B
CSS
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;
|
|
}
|
|
}
|