Files
red_de_investigacion_front/node_modules/bootstrap/scss/_transitions.scss
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

21 lines
261 B
SCSS

.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);
}