freeze bootstrap in version v2.3.2
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
FGU 2023-01-04 11:23:47 +01:00
parent 38c27a23f5
commit dc07e5f394
48 changed files with 6197 additions and 4 deletions

View file

@ -0,0 +1,22 @@
//
// 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;
}
}