Change page loader design

This commit is contained in:
2021-10-03 16:30:46 +01:00
parent 75b4992450
commit 6c9f617e0b
2 changed files with 7 additions and 10 deletions

View File

@@ -294,21 +294,23 @@ label .MuiIconButton-label > input {
.page-loader-container { .page-loader-container {
width: 30%; width: 30%;
max-width: 150px;
height: min-content; height: min-content;
line-height: 0; line-height: 0;
border-radius: 150px; border-radius: 150px;
background: var(--primary-color-dark); background: var(--primary-color-dark);
}
.page-loader {
margin: auto; margin: auto;
width: 30%;
max-width: 150px;
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
z-index: 10;
}
.page-loader {
width: calc(100% - 32px);
padding: 16px;
} }
.cookie-notice { .cookie-notice {

View File

@@ -10,11 +10,6 @@
cursor: default; cursor: default;
} }
.overlay--black {
background-color: var(--background-color);
opacity: 0.8;
}
.popup-close-button { .popup-close-button {
position: absolute; position: absolute;
top: 24px; top: 24px;