@rileybathurst/paddle 1.0.14 → 1.0.15
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 +1 -1
- package/src/PaddleLocationCard.tsx +4 -4
- package/src/styles/buttons.css +7 -0
- package/src/styles/color.css +11 -2
- package/src/styles/layout.css +18 -4
package/package.json
CHANGED
|
@@ -151,17 +151,17 @@ const PhoneContent = ({
|
|
|
151
151
|
{link?.includes("http") ? (
|
|
152
152
|
<a
|
|
153
153
|
href={link}
|
|
154
|
-
className="
|
|
154
|
+
className="svg"
|
|
155
155
|
target="_blank"
|
|
156
156
|
rel="noopener noreferrer"
|
|
157
157
|
title={name}
|
|
158
158
|
>
|
|
159
|
-
<div
|
|
159
|
+
<div dangerouslySetInnerHTML={{ __html: svg }} />
|
|
160
160
|
</a>
|
|
161
161
|
) : (
|
|
162
162
|
link && (
|
|
163
|
-
<Link to={link} className="
|
|
164
|
-
<div
|
|
163
|
+
<Link to={link} className="svg">
|
|
164
|
+
<div dangerouslySetInnerHTML={{ __html: svg }} />
|
|
165
165
|
</Link>
|
|
166
166
|
)
|
|
167
167
|
)}
|
package/src/styles/buttons.css
CHANGED
|
@@ -233,6 +233,13 @@ menu button {
|
|
|
233
233
|
justify-content: center;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
+
.location_multi-link {
|
|
237
|
+
display: flex;
|
|
238
|
+
justify-content: space-between;
|
|
239
|
+
gap: var(--denali);
|
|
240
|
+
width: 100%;
|
|
241
|
+
}
|
|
242
|
+
|
|
236
243
|
/*------------------------------------*/
|
|
237
244
|
|
|
238
245
|
footer .book-now {
|
package/src/styles/color.css
CHANGED
|
@@ -83,6 +83,15 @@ body .south-tahoe {
|
|
|
83
83
|
/* #SPECS */
|
|
84
84
|
/*------------------------------------*/
|
|
85
85
|
|
|
86
|
-
.specs h2,
|
|
86
|
+
.specs h2,
|
|
87
|
+
.specs .spec__unit {
|
|
87
88
|
color: grey;
|
|
88
|
-
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.menu__large hr {
|
|
92
|
+
border-color: var(--neutral-300);
|
|
93
|
+
|
|
94
|
+
@media (prefers-color-scheme: dark) {
|
|
95
|
+
border-color: var(--neutral-600);
|
|
96
|
+
}
|
|
97
|
+
}
|
package/src/styles/layout.css
CHANGED
|
@@ -339,16 +339,24 @@ header {
|
|
|
339
339
|
margin-block-end: var(--kilimanjaro);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
+
.location:not(:last-child) {
|
|
343
|
+
border-block-end: 1px solid var(--neutral-400);
|
|
344
|
+
margin-block-end: var(--kosciuszko);
|
|
345
|
+
}
|
|
346
|
+
|
|
342
347
|
.location {
|
|
343
348
|
display: flex;
|
|
344
|
-
flex-flow: row
|
|
349
|
+
flex-flow: row;
|
|
345
350
|
align-items: center;
|
|
346
351
|
gap: clamp(var(--kosciuszko), 1.67vw, var(--elbrus));
|
|
347
352
|
border-radius: var(--card-radius);
|
|
348
353
|
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
354
|
+
/* TODO: this is breaking with a phone and pushing too much location */
|
|
355
|
+
/* > * {
|
|
356
|
+
flex: 3rem 1;
|
|
357
|
+
width: 100%;
|
|
358
|
+
height: fit-content;
|
|
359
|
+
} */
|
|
352
360
|
|
|
353
361
|
> svg,
|
|
354
362
|
.svg {
|
|
@@ -356,6 +364,10 @@ header {
|
|
|
356
364
|
min-height: var(--everest);
|
|
357
365
|
}
|
|
358
366
|
|
|
367
|
+
> div {
|
|
368
|
+
width: 100%;
|
|
369
|
+
}
|
|
370
|
+
|
|
359
371
|
/* p {
|
|
360
372
|
margin-block-end: 0; reset to the gap
|
|
361
373
|
} */
|
|
@@ -365,6 +377,8 @@ header {
|
|
|
365
377
|
}
|
|
366
378
|
}
|
|
367
379
|
|
|
380
|
+
.location:not(:last-child)
|
|
381
|
+
|
|
368
382
|
/*------------------*/
|
|
369
383
|
/* #COMPOSITION */
|
|
370
384
|
/*------------------*/
|