mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
19 lines
363 B
Typst
19 lines
363 B
Typst
// Test stack layouts.
|
|
|
|
---
|
|
#let rect(width, fill) = rect(width: width, height: 1cm, fill: fill)
|
|
#stack(
|
|
rect(2cm, rgb("2a631a")),
|
|
rect(3cm, forest),
|
|
rect(1cm, conifer),
|
|
)
|
|
|
|
---
|
|
// Test overflowing stack.
|
|
|
|
#let rect(width, fill) = rect(width: 1cm, height: 0.4cm, fill: fill)
|
|
#box(height: 0.5cm, stack(
|
|
rect(3cm, forest),
|
|
rect(1cm, conifer),
|
|
))
|