This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/theme/loading.scss

35 lines
592 B
SCSS
Raw Normal View History

2019-12-19 22:09:23 +00:00
.loader-container {
&.is-loading {
position: relative;
pointer-events: none;
opacity: 0.5;
2019-12-19 22:09:23 +00:00
&:after {
@include loader;
position: absolute;
2021-01-23 15:02:38 +00:00
top: calc(50% - 2.5rem);
left: calc(50% - 2.5rem);
width: 5rem;
height: 5rem;
border-width: 0.25rem;
2019-12-19 22:09:23 +00:00
}
}
}
.spinner {
2019-12-19 22:09:23 +00:00
&.is-loading {
pointer-events: none;
2019-12-19 22:09:23 +00:00
&:after {
@include loader;
2021-01-23 15:02:38 +00:00
width: 2rem;
height: 2rem;
margin-left: calc(50% - 1rem);
2019-12-19 22:09:23 +00:00
position: absolute;
2021-01-23 15:02:38 +00:00
margin-top: 1rem;
2019-12-19 22:09:23 +00:00
z-index: 999;
2021-01-23 15:02:38 +00:00
border-width: 0.25rem;
2019-12-19 22:09:23 +00:00
}
}
}