hugo-whisper-theme/assets/scss/bootstrap/_transitions.scss

21 lines
261 B
SCSS
Raw Normal View History

2019-02-17 06:55:16 +00:00
.fade {
@include transition($transition-fade);
2019-07-23 01:03:11 +00:00
&:not(.show) {
opacity: 0;
2019-02-17 06:55:16 +00:00
}
}
.collapse {
2019-07-23 01:03:11 +00:00
&:not(.show) {
display: none;
2019-02-17 06:55:16 +00:00
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition($transition-collapse);
}