As a developer with an unknown paragraph length, I want to not have to specify a specific row count for that paragraph’s DOM element.
Currently, the default rows are grid-auto-rows: $rowHeight * 1rem.
I think the behavior should be grid-auto-rows: minmax($rowHeight * 1rem, auto). However, this affects the situation when two subgrids are placed next to each other. The smaller of the two grids will stretch all of it’s children to fill the height of the larger subgrid.
As a developer with an unknown paragraph length, I want to not have to specify a specific row count for that paragraph’s DOM element.
Currently, the default rows are
grid-auto-rows: $rowHeight * 1rem
.I think the behavior should be
grid-auto-rows: minmax($rowHeight * 1rem, auto)
. However, this affects the situation when two subgrids are placed next to each other. The smaller of the two grids will stretch all of it’s children to fill the height of the larger subgrid.