mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
29 lines
425 B
SCSS
29 lines
425 B
SCSS
|
|
|
|
.cloud-spinner{
|
|
position: relative;
|
|
|
|
&.is-loading:before{
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
z-index: 999;
|
|
}
|
|
|
|
.bp4-spinner{
|
|
position: absolute;
|
|
z-index: 999999;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-top: -20px;
|
|
margin-left: -20px;
|
|
}
|
|
&:not(.is-loading) .bp4-spinner{
|
|
display: none;
|
|
}
|
|
}
|