feat: travail design avec damien

This commit is contained in:
Matthieu Bessat 2023-04-01 00:14:22 +02:00
parent d369147c20
commit 6f34c7fc55
19 changed files with 278 additions and 35 deletions

View file

@ -12,7 +12,7 @@ body {
}
.site-footer {
border-top: .5rem solid #eeeeee;
border-top: .3rem solid $accent;
margin-top: 1rem;
padding-top: 2rem;
padding-bottom: 4rem;
@ -29,6 +29,29 @@ body {
}
}
.site-footer__content {
.site-footer__title {
@extends .serif-font;
}
.site-footer__content {
display: flex;
justify-content: space-between;
}
.site-footer__links {
a {
margin-right: .5rem;
}
}
@media (max-width: $md-breakpoint) {
.site-footer__content {
display: flex;
justify-content: start;
flex-direction: column;
}
.site-footer__title {
}
.site-footer__links {
}
}