feat: add link to mastodon
All checks were successful
Deploy workflow / deploy (push) Successful in 15s

This commit is contained in:
Matthieu Bessat 2024-09-24 11:15:29 +02:00
parent c5f92b86f4
commit 867bb99f5c
5 changed files with 43 additions and 18 deletions

View file

@ -12,3 +12,28 @@ body {
flex-grow: 1;
}
.footer__socials {
.social-icon {
width: 2rem;
transition: 0.2s all;
}
.social-icon.mastodon {
fill: #563CCF;
}
.social-icon:hover {
opacity: 0.8;
}
}
@media (max-width: $md-breakpoint) {
.footer__socials {
display: flex;
justify-content: center;
margin-top: 1rem;
margin-bottom: 0 !important;
li {
margin-left: 0 !important;
}
}
}