soccer-jersey-fork 1.0.47 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/patterns/patterns.js +1 -1
- package/package.json +1 -1
package/lib/patterns/patterns.js
CHANGED
|
@@ -73,7 +73,7 @@ export const drawShirtSideStriped = (page, primaryColor, secondaryColor) => {
|
|
|
73
73
|
return page.pattern(51.3, 100, function (add) {
|
|
74
74
|
add.rect(51.3, 100).fill(primaryColor);
|
|
75
75
|
// The move 24.2 is the space between the lines
|
|
76
|
-
add.rect(2, 55).fill(secondaryColor).move(24
|
|
76
|
+
add.rect(2, 55).fill(secondaryColor).move(24, 42);
|
|
77
77
|
});
|
|
78
78
|
};
|
|
79
79
|
export const drawCheckered = (page, primaryColor, secondaryColor) => page.pattern(20, 20, function (add) {
|