summaryrefslogtreecommitdiff
path: root/tests/typ/layout/grid-4.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-11-16 12:47:14 +0100
committerLaurenz <laurmaedje@gmail.com>2021-11-16 12:47:14 +0100
commit79638d4bbdc140a8dca0ccfdf70ffd607d5da251 (patch)
tree3da8a7d345ccac389d07c8327d9c63fd7209a250 /tests/typ/layout/grid-4.typ
parent73c4701749ac3919c5b845002052326502c67306 (diff)
Don't wrap already layoutable nodes into flows/pars unnecessarily
Diffstat (limited to 'tests/typ/layout/grid-4.typ')
-rw-r--r--tests/typ/layout/grid-4.typ8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/typ/layout/grid-4.typ b/tests/typ/layout/grid-4.typ
index 02ac0486..d6aa6358 100644
--- a/tests/typ/layout/grid-4.typ
+++ b/tests/typ/layout/grid-4.typ
@@ -15,10 +15,10 @@
#grid(
columns: (1fr,) * 4,
rows: (1cm,),
- rect(width: 50%, height: 100%, fill: conifer),
- rect(width: 50%, height: 100%, fill: forest),
- rect(width: 50%, height: 100%, fill: conifer),
- rect(width: 50%, height: 100%, fill: forest),
+ rect(width: 50%, fill: conifer),
+ rect(width: 50%, fill: forest),
+ rect(width: 50%, fill: conifer),
+ rect(width: 50%, fill: forest),
)
---