docs/styles/footer.scss

32 lines
587 B
SCSS

footer {
width: 100%;
margin-top: 32px;
padding-top: 8px;
background-color: #090a0c;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
.footer-inner {
display: flex;
flex-direction: column;
max-width: 1000px;
width: 100%;
padding: 24px 16px 32px;
.footer-links {
text-align: center;
& > *:first-child {
float: left;
}
& > *:last-child {
float: right;
}
}
}
}