carhop__carhop-theme__DEV/resources/css/pages/archive-actualites.css
Antoine M 522b583927
All checks were successful
continuous-integration/drone/push Build is passing
RESPONSIVE FIX
2026-05-21 09:48:39 +02:00

36 lines
790 B
CSS

.post-type-archive-actualites {
.block-front-header {
@apply !pb-16;
}
.post-grid__toolbar {
@apply flex flex-col md:grid items-start gap-y-4;
grid-template-columns: max-content 1fr;
grid-template-rows: auto auto;
/* Colonne gauche : compteur sur toute la hauteur (2 lignes) ; droite : recherche puis tri */
.post-count {
@apply pt-4;
grid-column: 1;
grid-row: 1 / -1;
@apply items-center self-stretch;
}
.post-grid__toolbar-actions {
grid-column: 2;
grid-row: 1;
@apply w-full justify-end;
}
select[name='sort_by'] {
grid-column: 2;
grid-row: 2;
@apply w-full md:w-fit justify-self-end;
}
.search-by {
@apply hidden;
}
}
}