Fixing Loading animation
This commit is contained in:
@ -1,10 +1,18 @@
|
||||
@import "../vars.scss";
|
||||
|
||||
.reloading { animation: turner 1s infinite linear }
|
||||
.reloading {
|
||||
display: inline-block;
|
||||
animation: turner 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes turner{
|
||||
from{ transform: rotate(0deg) }
|
||||
to { transform: rotate(360deg) }
|
||||
@keyframes turner {
|
||||
from {
|
||||
transform: rotate(0deg)
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
@ -13,11 +21,11 @@ footer {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
// border-top: 1px solid $border-color;
|
||||
|
||||
padding: 0.15em !important;
|
||||
|
||||
padding: 0.15em 1em !important;
|
||||
}
|
Reference in New Issue
Block a user