generated from ElnuDev/rust-project
Improve box styling
This commit is contained in:
parent
4b61aef177
commit
78aae3de62
2 changed files with 2 additions and 3 deletions
|
@ -54,7 +54,7 @@ fn main() -> Result<(), Error> {
|
|||
};
|
||||
let box_size = SVGMeasure::new(14.0, SVGUnit::Millimeter);
|
||||
let boxes = 54;
|
||||
let padding = SVGMeasure::new(5.0, SVGUnit::Millimeter);
|
||||
let padding = SVGMeasure::new(2.5, SVGUnit::Millimeter);
|
||||
let document = DocumentTemplate {
|
||||
positions: positions(box_size, padding, &dimensions, boxes),
|
||||
dimensions,
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
<svg version="1.1"
|
||||
width="{{ dimensions.width }}" height="{{ dimensions.height }}"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="100%" height="100%" fill="gray" />
|
||||
{% for (x, y) in positions %}
|
||||
<rect x="{{ x }}" y="{{ y }}" width="{{ box_size }}" height="{{ box_size }}" fill="white" />
|
||||
<rect x="{{ x }}" y="{{ y }}" rx="2mm" width="{{ box_size }}" height="{{ box_size }}" fill="none" stroke="#cccccc" stroke-width="1pt" />
|
||||
{% endfor %}
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 324 B |
Loading…
Add table
Reference in a new issue