SAND-framework/public/themes/default_without_html/less/component-animations.less
2021-02-10 09:28:33 +01:00

20 lines
No EOL
275 B
Text

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