Files
pyShelf/src/interface/static/scss/_transitions.scss
2020-07-26 21:02:10 -04:00

20 lines
239 B
SCSS
Vendored

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