soccer-jersey-fork 1.0.84 → 1.0.85
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 +2 -2
- package/package.json +1 -1
package/lib/patterns/patterns.js
CHANGED
|
@@ -277,12 +277,12 @@ export function addShoulderSideColor(page, color) {
|
|
|
277
277
|
// .stroke({ width: 1, color, linecap: "butt" });
|
|
278
278
|
// left
|
|
279
279
|
page
|
|
280
|
-
.path(`m
|
|
280
|
+
.path(`m 0 35, l 16.5 -26, 19 -8`)
|
|
281
281
|
.fill("none")
|
|
282
282
|
.stroke({ width: 2, color, linecap: "butt" });
|
|
283
283
|
// right
|
|
284
284
|
page
|
|
285
|
-
.path(`m
|
|
285
|
+
.path(`m 101 34 l -16.5 -26, -19 -8`)
|
|
286
286
|
.fill("none")
|
|
287
287
|
.stroke({ width: 2, color, linecap: "butt" });
|
|
288
288
|
}
|