Skip to content

Commit 52c42db

Browse files
committed
fix: use col/row start and span props in tile to set grid-col and row
1 parent b9ff8ab commit 52c42db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/tile-manager/themes/tile.base.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// overflow: auto;
1212
width: 100%;
1313
height: 100%;
14-
// grid-column: span(var(--ig-col-span, 1));
15-
// grid-row: span(var(--ig-row-span, 1));
14+
grid-column: var(--ig-col-start, unset) / span(var(--ig-col-span, 1));
15+
grid-row: var(--ig-row-start, unset) / span(var(--ig-row-span, 1));
1616
}
1717

1818
[part='content-container'] {

0 commit comments

Comments
 (0)