vmems-website/assets/sass/footer.scss
Matthieu Bessat 867bb99f5c
All checks were successful
Deploy workflow / deploy (push) Successful in 15s
feat: add link to mastodon
2024-09-24 11:15:29 +02:00

40 lines
539 B
SCSS

html {
height: 100%;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
}
.footer-push {
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;
}
}
}