Files
SecureNotes/src/components/footer.scss
2019-04-30 12:22:09 -04:00

23 lines
408 B
SCSS

@import "../vars.scss";
.reloading { animation: turner 1s infinite linear }
@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 !important;
}