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/_component-animations.scss

23 lines
322 B
SCSS
Raw Normal View History

2012-09-01 17:42:07 +01:00
//
// 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 {
2012-09-01 17:42:07 +01:00
position: relative;
height: 0;
2012-09-01 17:42:07 +01:00
overflow: hidden;
2012-04-25 22:16:32 +01:00
@include transition(height .35s ease);
2012-03-13 19:23:53 +00:00
&.in {
height: auto;
}
}