mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-26 15:16:21 +01:00
21 lines
261 B
SCSS
Vendored
21 lines
261 B
SCSS
Vendored
.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);
|
|
}
|