Compare commits

..

2 Commits

Author SHA1 Message Date
Antoine M
dd6d2369b8 FEATURE Handling alignfull blocks on single pages
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-24 15:33:22 +01:00
Antoine M
f98c8f6bf9 FIX center problems with content box blocks since handling shape types 2026-03-24 15:32:50 +01:00
2 changed files with 16 additions and 0 deletions

View File

@ -82,3 +82,9 @@ body {
.wp-block-carhop-blocks-document-card:focus:after {
@apply !static;
}
.content-box__innerblocks {
.block-editor-inner-blocks {
@apply mx-auto;
}
}

View File

@ -32,3 +32,13 @@
}
}
}
.page--single-analyses-etudes,
.page--single-expositions,
.page--single-outils-pedagogiques {
.content-area .alignfull {
@media (min-width: 1024px) {
margin: 0 calc(-50vw + 50% - calc(33.33% - 3rem - 2px)) !important;
}
}
}