This commit is contained in:
Gogs
2019-12-09 23:57:26 +04:00
parent cc4c4b90fb
commit 55df7321f8
150 changed files with 13473 additions and 0 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);
}