backoffice/old/lib/font-awesome/docs/assets/less/twbs-203/component-animations.less

20 lines
275 B
Plaintext
Raw Permalink Normal View History

2020-02-06 10:09:39 +00:00
// 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;
}
}