Compare commits

...

2 Commits

Author SHA1 Message Date
Antoine M
d54179401c FEATURE Handling bold in paragraphs
All checks were successful
continuous-integration/drone/push Build is passing
2025-10-07 09:45:50 +02:00
Antoine M
dd242f2dcb STYLE Refining block spacings 2025-10-07 09:33:27 +02:00
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
.chapter-section + .content-box { .chapter-section + .content-box {
margin-top: -80px; margin-top: -80px;
} }
.content-box + .subscribe-infolettre {
margin-top: -80px;
}

View File

@ -43,3 +43,12 @@ article > *:not(.entry-content),
} }
} }
} }
.site-content {
p,
li {
strong {
@apply font-bold;
}
}
}