Increase EPI caption size

This commit is contained in:
Constantin Gierczak--Galle 2024-09-15 15:34:30 +02:00
parent 02a28b2272
commit 75eabaf311
No known key found for this signature in database

View file

@ -59,14 +59,14 @@ instructions: none, note: none, min_help: 0) = {
for item in card.protection_items {
box([
#image(width: 30%, item.img)
#text(style: "italic", [#item.caption])
#text(style: "italic", size: 18pt, [#item.caption])
])
}
for item in card.forbidden_items {
// TODO: Cross the image
box([
#image(width: 30%, item.img)
#text(style: "italic", [#item.caption])
#text(style: "italic", size: 18pt, [#item.caption])
])
}
}