31 lines
464 B
SCSS
31 lines
464 B
SCSS
@import "../vars.scss";
|
|
|
|
.reloading {
|
|
display: inline-block;
|
|
animation: turner 1s linear infinite;
|
|
}
|
|
|
|
@keyframes turner {
|
|
from {
|
|
transform: rotate(0deg)
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg)
|
|
}
|
|
}
|
|
|
|
footer {
|
|
// z-index: 128;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
// border-top: 1px solid $border-color;
|
|
|
|
padding: 0.15em 1em !important;
|
|
} |