packages feed

typst-0.1.0.0: test/typ/layout/grid-4-02.typ

// Test that all three kinds of rows use the correct bases.
#set page(height: 4cm, margin: 0cm)
#grid(
  rows: (1cm, 1fr, 1fr, auto),
  rect(height: 50%, width: 100%, fill: green),
  rect(height: 50%, width: 100%, fill: red),
  rect(height: 50%, width: 100%, fill: green),
  rect(height: 25%, width: 100%, fill: red),
)