You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/src/components/wait/style.scss

23 lines
419 B

@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.waiting {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
left: 0px;
z-index: 15;
.loader {
@include border-radius(10px);
min-width: 200px;
background-color: black;
}
}