foodsoft/vendor/assets/stylesheets/bootstrap/component-animations.less
FGU dc07e5f394
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
freeze bootstrap in version v2.3.2
2023-01-04 11:23:47 +01: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;
}
}