Torq/css/component-animations.css
2025-04-11 15:20:56 -05:00

25 lines
288 B
CSS

/*
Component animations
========================================
*/
.fade {
opacity: 0;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
.collapse.in {
height: auto;
}