resources update

This commit is contained in:
2025-01-21 14:59:39 +03:00
parent b733a49738
commit dc84874d16
540 changed files with 22846 additions and 45 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);
}