1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00
twbs--bootstrap-sass/vendor/assets/stylesheets/bootstrap/_component-animations.scss

18 lines
279 B
SCSS
Raw Normal View History

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