@rileybathurst/paddle 1.1.2 → 1.1.3
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/package.json
CHANGED
|
@@ -19,7 +19,7 @@ const DefaultPaddler = ({ sport, defaultKayaker, defaultPaddleboarder }: default
|
|
|
19
19
|
<GatsbyImage
|
|
20
20
|
image={defaultPaddleboarder.image.localFile.childImageSharp.gatsbyImageData}
|
|
21
21
|
alt={defaultPaddleboarder.image.alternativeText || "Paddleboarder"}
|
|
22
|
-
className="
|
|
22
|
+
className=" paddler"
|
|
23
23
|
/>
|
|
24
24
|
)
|
|
25
25
|
}
|
|
@@ -27,7 +27,7 @@ const DefaultPaddler = ({ sport, defaultKayaker, defaultPaddleboarder }: default
|
|
|
27
27
|
<GatsbyImage
|
|
28
28
|
image={defaultKayaker.image.localFile.childImageSharp.gatsbyImageData}
|
|
29
29
|
alt={defaultKayaker.image.alternativeText || "Kayaker"}
|
|
30
|
-
className="
|
|
30
|
+
className=" paddler"
|
|
31
31
|
/>
|
|
32
32
|
)
|
|
33
33
|
}
|
|
@@ -54,20 +54,20 @@ export const PaddleComposition = ({ sport, image, defaultKayaker, defaultPaddleb
|
|
|
54
54
|
<GatsbyImage
|
|
55
55
|
image={waterTexture.image.localFile.childImageSharp.gatsbyImageData}
|
|
56
56
|
alt={waterTexture.image.alternativeText || "Water Texture"}
|
|
57
|
-
className="
|
|
57
|
+
className="texture-1"
|
|
58
58
|
/>
|
|
59
59
|
|
|
60
60
|
<GatsbyImage
|
|
61
61
|
image={sandTexture.image.localFile.childImageSharp.gatsbyImageData}
|
|
62
62
|
alt={sandTexture.image.alternativeText || "Sand Texture"}
|
|
63
|
-
className=
|
|
63
|
+
className="texture-2"
|
|
64
64
|
/>
|
|
65
65
|
|
|
66
66
|
{image ?
|
|
67
67
|
<GatsbyImage
|
|
68
68
|
image={image.localFile.childImageSharp.gatsbyImageData}
|
|
69
69
|
alt={image.alternativeText || "Composition Image"}
|
|
70
|
-
className="
|
|
70
|
+
className=" paddler"
|
|
71
71
|
/>
|
|
72
72
|
: <DefaultPaddler
|
|
73
73
|
sport={sport}
|
package/src/styles/layout.css
CHANGED
|
@@ -394,6 +394,12 @@ header {
|
|
|
394
394
|
max-width: 100%;
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
+
/* * img__wrapped */
|
|
398
|
+
> * {
|
|
399
|
+
border-radius: 0.25rem;
|
|
400
|
+
box-shadow: var(--penumbra);
|
|
401
|
+
}
|
|
402
|
+
|
|
397
403
|
> img {
|
|
398
404
|
display: block;
|
|
399
405
|
}
|
|
@@ -427,13 +433,13 @@ header {
|
|
|
427
433
|
height: calc(100% - 4px);
|
|
428
434
|
}
|
|
429
435
|
|
|
430
|
-
.
|
|
436
|
+
.texture-1 {
|
|
431
437
|
grid-column: 1/5;
|
|
432
438
|
grid-row: 1/3;
|
|
433
439
|
aspect-ratio: 16/9;
|
|
434
440
|
}
|
|
435
441
|
|
|
436
|
-
.
|
|
442
|
+
.texture-2 {
|
|
437
443
|
grid-column: 2/6;
|
|
438
444
|
grid-row: 2/4;
|
|
439
445
|
aspect-ratio: 16/9;
|