snappymail/vendors/bootstrap/less/component-animations.less
2020-09-02 21:30:23 +02:00

14 lines
215 B
Text

//
// Component animations
// --------------------------------------------------
.collapse {
position: relative;
height: 0;
overflow: hidden;
transition: height .35s ease;
&.in {
height: auto;
}
}