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
Thomas McDonald 4ae4653ff6 Update bootstrap-sass to 2.0.0
Now with support for Compass!
2012-02-06 13:38:26 +00:00

18 lines
No EOL
279 B
SCSS

// 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; }
}