mirror of
https://github.com/nasa/openmct.git
synced 2025-01-24 13:28:12 +00:00
11 lines
266 B
SCSS
11 lines
266 B
SCSS
|
// At the last, hide .l-splash-holder and show .holder-all
|
||
|
.l-splash-holder.fadeout {
|
||
|
@include trans-prop-nice($props: opacity, $dur: 1000ms);
|
||
|
opacity: 0;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.user-environ .holder-all {
|
||
|
opacity: 1;
|
||
|
pointer-events: inherit;
|
||
|
}
|