carhop__carhop-theme__DEV/resources/css/pages/singles.css
Antoine M dd6d2369b8
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Handling alignfull blocks on single pages
2026-03-24 15:33:22 +01:00

45 lines
862 B
CSS

.page-single {
.post-toolbar {
@apply px-8;
}
.tags__title {
@apply text-lg uppercase font-semibold mt-0 my-4 nunito;
}
.tags-list {
@apply flex flex-wrap gap-4;
}
.content-wrapper {
&[data-active-tab='post'] {
.post-informations,
#post-authors {
@apply hidden;
}
}
&[data-active-tab='authors'] {
.post-informations,
.post-content {
@apply hidden;
}
}
&[data-active-tab='informations'] {
#post-authors,
.post-content {
@apply hidden;
}
}
}
}
.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;
}
}
}