atst/styles/components/_footer.scss
2019-01-17 11:58:17 -05:00

27 lines
470 B
SCSS

.app-footer {
background-color: $color-white;
border-top: 1px solid $color-black;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: $gap * 1.5;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
.app-footer__info {
flex-grow: 1;
.app-footer__info__link {
margin: (-$gap * 2) (-$gap);
.icon--footer {
@include icon-size(16);
margin: 0.8rem;
}
}
}
}