d70d81ebdf
OneDrive Backup
12 lines
256 B
CSS
12 lines
256 B
CSS
.transition-visible {
|
|
overflow: hidden;
|
|
transition: transform 0.3s ease-out;
|
|
height: auto;
|
|
transform: scaleY(1);
|
|
transform-origin: top;
|
|
}
|
|
|
|
.transition-visible.transition-collapsed {
|
|
transform: scaleY(0);
|
|
}
|