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

20 lines
285 B
SCSS
Raw Normal View History

// COMPONENT ANIMATIONS
// --------------------
.fade {
2012-06-04 11:30:38 +01:00
opacity: 0;
@include transition(opacity .15s linear);
&.in {
2012-06-04 11:30:38 +01:00
opacity: 1;
}
}
.collapse {
position:relative;
height: 0;
2012-04-25 22:16:32 +01:00
overflow:hidden;
@include transition(height .35s ease);
2012-03-13 19:23:53 +00:00
&.in {
height: auto;
}
}