patashala/style/cms/bower_components/bootstrap/scss/_transitions.scss
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

35 lines
402 B
SCSS
Executable File

.fade {
opacity: 0;
@include transition($transition-fade);
&.show {
opacity: 1;
}
}
.collapse {
display: none;
&.show {
display: block;
}
}
tr {
&.collapse.show {
display: table-row;
}
}
tbody {
&.collapse.show {
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition($transition-collapse);
}