Update Spinner position
This commit is contained in:
parent
dc355b3bbd
commit
655e4e5038
1 changed files with 13 additions and 4 deletions
|
|
@ -1,12 +1,21 @@
|
|||
.Spinner {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
bottom: 1rem;
|
||||
right: 1rem;
|
||||
z-index: 2;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(255, 255, 255, 1);
|
||||
border-radius: 50%;
|
||||
padding: 0.5rem;
|
||||
animation: SpinnerPopIn 0.3s ease-out;
|
||||
}
|
||||
|
||||
@keyframes SpinnerPopIn {
|
||||
from {
|
||||
transform: scale(0);
|
||||
}
|
||||
}
|
||||
|
||||
.semipolar-spinner,
|
||||
|
|
@ -15,7 +24,7 @@
|
|||
}
|
||||
|
||||
.semipolar-spinner {
|
||||
--size: 150px;
|
||||
--size: 6rem;
|
||||
--duration: 750ms;
|
||||
--color: var(--primary);
|
||||
height: var(--size);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue