typst/tests/typ/layout/stack.typ
2021-06-10 16:46:01 +02:00

10 lines
180 B
Typst

// Test stack layouts.
---
#let rect(width, color) = rect(width: width, height: 1cm, fill: color)
#stack(
rect(2cm, #2a631a),
rect(3cm, forest),
rect(1cm, conifer),
)