GridTemplateRows.scss 165 B

12345
  1. // Grid Template Rows
  2. @for $i from 1 through 6 {
  3. .grid-rows-#{$i} {grid-template-rows: repeat(#{$i}, minmax(0, 1fr));}
  4. }
  5. .grid-rows-none {grid-template-rows: none;}