Stretch Vertically stacked blocks

hi there!

you can use css-grid to force all items to be the size of the largest element, like this:

%root% {
  display: grid;
  grid-auto-rows: 1fr;
}

Cheers
Suat

1 Like