website/_includes/styles/components/footer.scss
Foster Hangdaan ff51d4b898
Add social media links to page footer
Also deleted the Places section in the home page since those links are
now in the footer.
2023-08-01 01:35:21 -04:00

29 lines
510 B
SCSS

.page-footer {
text-align: center;
max-width: var(--page--max-width);
margin: 0 auto;
padding: 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);
}
}
}
.heart {
color: var(--color-red);
}
}