website/_includes/styles/components/footer.scss
Foster Hangdaan d19be7b112
Move meta info to README and footer
This removes the About page and moves its contents to the README and footer.
2024-06-05 20:53:54 -04:00

31 lines
548 B
SCSS

.page-footer {
text-align: center;
max-width: var(--page--max-width);
margin: 0 auto;
padding: 2rem 1rem;
.social-links {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1rem;
font-size: 1.5rem;
a {
padding: 0.5rem 0.5rem 0.25rem 0.5rem;
color: var(--color-fg);
border-radius: 5px;
&:hover {
background-color: var(--color-bg--layer-01);
}
}
}
.meta {
display: flex;
justify-content: center;
gap: 1rem;
}
}