taiga-front/app/styles/components/loader.scss

33 lines
653 B
SCSS

.loader {
@include transition(opacity .5s linear);
background-color: $white;
bottom: 0;
display: none;
height: 100%;
left: 0;
opacity: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 99900;
.container {
margin: 0 auto;
margin-top: 15%;
position: relative;
width: 150px;
}
p {
@extend %large;
color: $gray-light;
padding-top: 20px;
text-align: center;
}
&.active {
@include transition(opacity .5s linear);
background-color: rgba($white, .9);
display: block;
opacity: 1;
}
}