mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-26 11:39:04 +01:00
38 lines
702 B
SCSS
38 lines
702 B
SCSS
.loading-overlay {
|
|
.loading-container {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.loading-tornado {
|
|
&:after {
|
|
content: '';
|
|
display: block;
|
|
height: 60px;
|
|
width: 60px;
|
|
background-image: url('../images/logo.svg');
|
|
animation: spinAroundReverse 2000ms infinite linear;
|
|
}
|
|
}
|
|
|
|
.loading-message {
|
|
padding-top: .5rem;
|
|
color: $primary;
|
|
text-align: center;
|
|
|
|
+ .button {
|
|
margin-top: .5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes spinAroundReverse {
|
|
from {
|
|
transform: rotate(359deg); }
|
|
to {
|
|
transform: rotate(0deg); }
|
|
}
|