website/_includes/styles/components/footer.scss

31 lines
548 B
SCSS
Raw Normal View History

2023-07-26 23:04:30 -04:00
.page-footer {
text-align: center;
max-width: var(--page--max-width);
margin: 0 auto;
2023-08-03 19:31:43 -04:00
padding: 2rem 1rem;
2023-07-26 23:04:30 -04:00
.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;
2023-07-26 23:04:30 -04:00
}
}