🐛 Fix loader position while verifying token

This commit is contained in:
Eva 2024-01-09 12:06:01 +01:00 committed by Andrey Antukh
parent 443d157dbe
commit 5cb8ce3319
7 changed files with 38 additions and 7 deletions

View file

@ -600,6 +600,22 @@
color: var(--modal-button-foreground-color-error);
}
.loader-base {
@include flexCenter;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
z-index: $z-index-alert;
background-color: var(--loader-background);
:global(svg#loader-pencil) {
height: $s-100;
width: $s-100;
animation: loaderColor 5s infinite ease;
fill: var(--icon-foreground);
}
}
// UI ELEMENTS
.asset-element {
@include titleTipography;