modification on schema figaption display to handle grid only when the container has enough space
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-03-19 12:17:20 +01:00
parent 55c3481f30
commit 3b7ec0cec7

View File

@ -10,7 +10,8 @@
display: block !important;
}
.block-editor-block-list__layout {
@media (min-width: 1200px) {
container-type: inline-size;
@container (min-width: 1200px) {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;