chayns-components
Version:
A set of beautiful React components for developing chayns® applications.
17 lines • 504 B
CSS
@keyframes multiline {
0%, 99% {
white-space: pre-wrap;
}
100% {
white-space: nowrap;
}
}
.list-item__header--multiline .list-item__titles .list-item__title,
.list-item__header--multiline .list-item__titles .list-item__subtitle {
animation: multiline 0.1s;
}
.list-item--expanded .list-item__header--multiline .list-item__titles .list-item__title,
.list-item--expanded .list-item__header--multiline .list-item__titles .list-item__subtitle {
white-space: pre-wrap;
animation: none;
}