Files
SecureNotes/src/components/footer.scss
2019-06-18 23:23:43 +02:00

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;
}