Created
March 18, 2024 10:13
-
-
Save ijurko/f204623ca84e7c5782c08a5e61f8faba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.c-loader { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 99999999; | |
background: $white; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
&.hide, | |
.is-ie & { | |
opacity: 0; | |
visibility: hidden; | |
transition: 0.3s; | |
} | |
&.show { | |
opacity: 1; | |
visibility: visible; | |
transition: opacity 0.3s; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment