Pony.fm/app/styles/base/bootstrap/component-animations.less
2015-04-23 04:17:05 -05:00

22 lines
306 B
Text

//
// Component animations
// --------------------------------------------------
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}