🚀 RELEASE: 2020 Revamp

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-05-09 22:15:53 +01:00
parent 3d9513dbe7
commit 906e557d65
198 changed files with 49195 additions and 11405 deletions

View File

@ -0,0 +1,20 @@
.fade {
@include transition($transition-fade);
&:not(.show) {
opacity: 0;
}
}
.collapse {
&:not(.show) {
display: none;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition($transition-collapse);
}