1
0
Fork 0
mirror of synced 2024-09-20 19:33:10 +12:00

Prevent cross-grid variable inheritance

This commit is contained in:
Andrew Kingston 2024-08-01 12:27:19 +01:00
parent 61e24d18bc
commit 4e9e644e13
No known key found for this signature in database

View file

@ -68,6 +68,16 @@
position: relative; position: relative;
height: 400px; height: 400px;
gap: 0; gap: 0;
/* Prevent cross-grid variable inheritance */
--grid-desktop-col-start: initial;
--grid-desktop-col-end: initial;
--grid-desktop-row-start: initial;
--grid-desktop-row-end: initial;
--grid-mobile-col-start: initial;
--grid-mobile-col-end: initial;
--grid-mobile-row-start: initial;
--grid-mobile-row-end: initial;
} }
.grid, .grid,
.underlay { .underlay {