fix(style): also set `grid-column` in direct descendants of `Layout grid` when using presets from `width.ts`
This commit is contained in:
parent
0e4cef36a0
commit
0a56a12e91
|
@ -90,7 +90,7 @@ const attributes = computed(() => ({
|
||||||
place-content: center;
|
place-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[layout=grid], &[layout=grid-custom] > * {
|
&[layout=grid] > *, &[layout=grid-custom] > * {
|
||||||
/* Set this global variable through `width` */
|
/* Set this global variable through `width` */
|
||||||
grid-column: var(--grid-column);
|
grid-column: var(--grid-column);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue