classic: improve abbreviation spacing
This commit is contained in:
@@ -110,8 +110,12 @@
|
|||||||
heading(("Seznam zkratek", "List of abbreviations").at(language), numbering: none);
|
heading(("Seznam zkratek", "List of abbreviations").at(language), numbering: none);
|
||||||
align(center, grid(
|
align(center, grid(
|
||||||
columns: 2,
|
columns: 2,
|
||||||
..abbrs.pairs().map((v) => {
|
gutter: 1em,
|
||||||
(block(text(v.at(0), weight: "bold"), width: max_abbr_width + 1em), text(v.at(1)))
|
..abbrs.pairs().map((a) => {
|
||||||
|
(
|
||||||
|
align(left, block(text(a.at(0), weight: "bold"), width: max_abbr_width + 1em)),
|
||||||
|
text(a.at(1))
|
||||||
|
)
|
||||||
}).flatten()
|
}).flatten()
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user