soccer-jersey-fork 1.0.100 → 1.0.101
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
|
@@ -328,12 +328,12 @@ export const addShortSideColor = (page, color) => {
|
|
|
328
328
|
export function addShoulderSideColor(page, color) {
|
|
329
329
|
// left
|
|
330
330
|
page
|
|
331
|
-
.path(`m 0 35, l 16.5 -26, 20 -8`)
|
|
331
|
+
.path(`m 0 35, l 16.5 -26, 20 -8.5`)
|
|
332
332
|
.fill("none")
|
|
333
333
|
.stroke({ width: 2, color, linecap: "butt" });
|
|
334
334
|
// right
|
|
335
335
|
page
|
|
336
|
-
.path(`m 101 35 l -16.5 -26, -21 -8`)
|
|
336
|
+
.path(`m 101 35 l -16.5 -26, -21 -8.5`)
|
|
337
337
|
.fill("none")
|
|
338
338
|
.stroke({ width: 2, color, linecap: "butt" });
|
|
339
339
|
}
|