mirror of
https://gitea.tendokyu.moe/eamuse/docs.git
synced 2024-11-13 18:10:55 +01:00
32 lines
587 B
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;
|
|
}
|
|
}
|
|
}
|
|
}
|