@phillips/seldon 1.178.0 → 1.180.0
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/dist/components/AddToCalendar/AddToCalendar.js +1 -1
- package/dist/components/Article/Article.js +2 -2
- package/dist/components/ComposedModal/ComposedModal.js +2 -2
- package/dist/components/ExitGateCard/ExitGateCard.js +2 -2
- package/dist/components/FavoritingTileButton/FavoritingTileButton.js +15 -15
- package/dist/components/Filter/FilterHeader.js +1 -1
- package/dist/components/Link/types.d.ts +2 -1
- package/dist/components/Link/types.js +1 -1
- package/dist/components/Text/Text.js +1 -1
- package/dist/components/Text/types.d.ts +17 -0
- package/dist/components/Text/types.js +3 -3
- package/dist/components/Text/utils.js +6 -6
- package/dist/patterns/AccountPageHeader/AccountPageHeader.js +21 -21
- package/dist/patterns/BidSnapshot/BidMessage.js +6 -6
- package/dist/patterns/FavoritesCollectionTile/FavoritesCollectionTile.js +1 -1
- package/dist/patterns/FiltersInline/FilterButton.js +8 -8
- package/dist/patterns/FiltersInline/FilterDropdownMenuDesktop.js +41 -41
- package/dist/patterns/FiltersInline/FilterDropdownMenuMobile.js +38 -38
- package/dist/patterns/SaleCard/SaleCard.js +25 -25
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBanner.d.ts +2 -0
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBanner.js +57 -55
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBanner.stories.d.ts +6 -0
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js +7 -7
- package/dist/patterns/UserManagement/UserManagement.js +10 -10
- package/dist/patterns/ViewingDetails/ViewingDetails.js +12 -12
- package/dist/scss/_type.scss +142 -63
- package/dist/scss/_vars.scss +74 -45
- package/dist/scss/_vars.scss.js +76 -47
- package/dist/scss/components/Accordion/_accordion.scss +4 -4
- package/dist/scss/components/AddToCalendar/_addToCalendar.scss +2 -2
- package/dist/scss/components/Article/_article.scss +5 -0
- package/dist/scss/components/Breadcrumb/_breadcrumb.scss +1 -1
- package/dist/scss/components/Button/_button.scss +1 -1
- package/dist/scss/components/ComboBox/_combobox.scss +4 -4
- package/dist/scss/components/Countdown/_countdown.scss +2 -2
- package/dist/scss/components/Countdown/_duration.scss +1 -1
- package/dist/scss/components/Detail/_detail.scss +1 -1
- package/dist/scss/components/Drawer/_drawerHeader.scss +2 -2
- package/dist/scss/components/Dropdown/_dropdown.scss +2 -2
- package/dist/scss/components/Filter/_filter.scss +3 -3
- package/dist/scss/components/Icon/_icon.stories.scss +1 -1
- package/dist/scss/components/Input/_input.scss +3 -3
- package/dist/scss/components/Link/_link.scss +4 -4
- package/dist/scss/components/Pagination/_pagination.scss +1 -1
- package/dist/scss/components/Search/_search.scss +1 -1
- package/dist/scss/components/Tabs/_tabs.scss +1 -1
- package/dist/scss/components/Tags/_tags.scss +1 -1
- package/dist/scss/components/TextArea/_textArea.scss +2 -2
- package/dist/scss/components/TextSymbol/_textSymbol.scss +2 -2
- package/dist/scss/patterns/SaleHeaderBanner/_saleHeaderBanner.scss +9 -1
- package/dist/scss/patterns/Social/_social.scss +1 -1
- package/dist/scss/patterns/Subscribe/_subscribe.scss +3 -3
- package/dist/scss/site-furniture/Footer/_footer.scss +2 -2
- package/dist/site-furniture/Footer/Footer.js +1 -1
- package/package.json +1 -1
package/dist/scss/_vars.scss.js
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
|
-
const
|
|
1
|
+
const n = `// prefix
|
|
2
2
|
$px: seldon;
|
|
3
3
|
|
|
4
|
+
@mixin font-size-vars--sm {
|
|
5
|
+
--font-size-micro: 0.25rem;
|
|
6
|
+
--font-size-xsm: 0.5rem;
|
|
7
|
+
--font-size-sm: 0.75rem;
|
|
8
|
+
--font-size-md: 1rem;
|
|
9
|
+
--font-size-lg: 1.25rem;
|
|
10
|
+
--font-size-xl: 1.5rem;
|
|
11
|
+
--font-size-xxl: 1.75rem;
|
|
12
|
+
--font-size-xxxl: 2rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@mixin font-size-vars--md {
|
|
16
|
+
@include font-size-vars--sm;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@mixin font-size-vars--lg {
|
|
20
|
+
--font-size-micro: 0.5rem;
|
|
21
|
+
--font-size-xsm: 0.75rem;
|
|
22
|
+
--font-size-sm: 1rem;
|
|
23
|
+
--font-size-md: 1.25rem;
|
|
24
|
+
--font-size-lg: 1.5rem;
|
|
25
|
+
--font-size-xl: 1.75rem;
|
|
26
|
+
--font-size-xxl: 2rem;
|
|
27
|
+
--font-size-xxxl: 2.25rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
$font-size-micro: var(--font-size-micro);
|
|
31
|
+
$font-size-xsm: var(--font-size-xsm);
|
|
32
|
+
$font-size-sm: var(--font-size-sm);
|
|
33
|
+
$font-size-md: var(--font-size-md);
|
|
34
|
+
$font-size-lg: var(--font-size-lg);
|
|
35
|
+
$font-size-xl: var(--font-size-xl);
|
|
36
|
+
$font-size-xxl: var(--font-size-xxl);
|
|
37
|
+
$font-size-xxxl: var(--font-size-xxxl);
|
|
38
|
+
|
|
4
39
|
////////////////////////
|
|
5
40
|
/// COlORS:
|
|
6
41
|
///////////////////////
|
|
@@ -83,19 +118,40 @@ $text-family: $DistinctText;
|
|
|
83
118
|
|
|
84
119
|
// Used with the labelText mixin
|
|
85
120
|
// @include labelText($label)
|
|
121
|
+
$labelLg: 'labelLg';
|
|
122
|
+
$labelLgBold: 'labelLgBold';
|
|
123
|
+
$labelMd: 'labelMd';
|
|
124
|
+
$labelMdBold: 'labelMdBold';
|
|
125
|
+
$labelSm: 'labelSm';
|
|
126
|
+
$labelSmBold: 'labelSmBold';
|
|
86
127
|
$button: 'button';
|
|
87
128
|
$link: 'link';
|
|
129
|
+
$linkBold: 'linkBold';
|
|
88
130
|
$email: 'email';
|
|
89
131
|
$label: 'label';
|
|
90
132
|
$badge: 'badge';
|
|
91
133
|
|
|
134
|
+
// Body styles
|
|
135
|
+
$bodyLg: 'bodyLg';
|
|
136
|
+
$bodyMd: 'bodyMd';
|
|
137
|
+
$bodySm: 'bodySm';
|
|
138
|
+
$bodyLgBold: 'bodyLgBold';
|
|
139
|
+
$bodyMdBold: 'bodyMdBold';
|
|
140
|
+
$bodySmBold: 'bodySmBold';
|
|
141
|
+
|
|
92
142
|
// Used with the hText mixin
|
|
93
143
|
$blockquote: 'blockquote';
|
|
94
144
|
$heading1: 'heading1';
|
|
95
145
|
$heading2: 'heading2';
|
|
96
146
|
$heading3: 'heading3';
|
|
147
|
+
$heading3Italic: 'heading3Italic';
|
|
97
148
|
$heading4: 'heading4';
|
|
149
|
+
$heading4Italic: 'heading4Italic';
|
|
98
150
|
$heading5: 'heading5';
|
|
151
|
+
|
|
152
|
+
// Eyebrow tokens
|
|
153
|
+
$eyebrowLg: 'eyebrowLg';
|
|
154
|
+
$eyebrowSm: 'eyebrowSm';
|
|
99
155
|
$title1: 'title1';
|
|
100
156
|
$title2: 'title2';
|
|
101
157
|
$title3: 'title3';
|
|
@@ -110,9 +166,11 @@ $snwHeaderLink: 'snwHeaderLink';
|
|
|
110
166
|
$snwFlyoutLink: 'snwFlyoutLink';
|
|
111
167
|
$snwHeadingHero1: 'snwHeadingHero1';
|
|
112
168
|
$snwHeadingHero2: 'snwHeadingHero2';
|
|
113
|
-
$text-tokens: $
|
|
114
|
-
$
|
|
115
|
-
$
|
|
169
|
+
$text-tokens: $labelLg, $labelLgBold, $labelMd, $labelMdBold, $labelSm, $labelSmBold, $button, $link, $linkBold, $email,
|
|
170
|
+
$label, $badge, $bodyLg, $bodyMd, $bodySm, $bodyLgBold, $bodyMdBold, $bodySmBold, $blockquote, $heading1, $heading2,
|
|
171
|
+
$heading3, $heading3Italic, $heading4, $heading4Italic, $heading5, $eyebrowLg, $eyebrowSm, $title1, $title2, $title3,
|
|
172
|
+
$title4, $body1, $body2, $body3, $string1, $string2, $string3, $snwFlyoutLink, $snwHeaderLink, $snwHeadingHero1,
|
|
173
|
+
$snwHeadingHero2;
|
|
116
174
|
|
|
117
175
|
////////////////////////
|
|
118
176
|
/// Breakpoint TOKENS to be used for min-width comparisons, make sure they match BREAKPOINTS in constants.ts
|
|
@@ -127,20 +185,14 @@ $breakpoint-xl: 1801px;
|
|
|
127
185
|
///////////////////////
|
|
128
186
|
// @TODO: These tokens need to be aligned with the new values from the design system https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=7263-1361&node-type=canvas&m=dev
|
|
129
187
|
// Once we update ObjectTile and other components will need to be updated to match the new token.
|
|
188
|
+
|
|
189
|
+
$line-height-default: 1.2;
|
|
190
|
+
$line-height-body: 1.4;
|
|
191
|
+
|
|
130
192
|
:root {
|
|
131
193
|
--desktop-max-width: 120rem;
|
|
132
194
|
--quote-size: 1.5rem;
|
|
133
195
|
--quote-line-height: 2rem;
|
|
134
|
-
--heading-size1: 1.5rem;
|
|
135
|
-
--heading-line-height-size1: 1.75rem;
|
|
136
|
-
--heading-size2: 1.5rem;
|
|
137
|
-
--heading-line-height-size2: 1.75rem;
|
|
138
|
-
--heading-size3: 1.25rem;
|
|
139
|
-
--heading-line-height-size3: 1.5rem;
|
|
140
|
-
--heading-size4: 1rem;
|
|
141
|
-
--heading-line-height-size4: 1.25rem;
|
|
142
|
-
--heading-size5: 0.75rem;
|
|
143
|
-
--heading-line-height-size5: 1rem;
|
|
144
196
|
--string-size1: 1rem;
|
|
145
197
|
--string-line-height-size1: 1.25rem;
|
|
146
198
|
--string-size2: 0.75rem;
|
|
@@ -173,19 +225,15 @@ $breakpoint-xl: 1801px;
|
|
|
173
225
|
--snw-heading-hero-size2: 1.625rem;
|
|
174
226
|
--snw-heading-hero-line-height-size2: 1.9375rem;
|
|
175
227
|
|
|
228
|
+
// FONT SIZES
|
|
229
|
+
--font-size-step: 0.25rem;
|
|
230
|
+
--body-size-step: 0.5rem;
|
|
231
|
+
|
|
232
|
+
@include font-size-vars--sm;
|
|
233
|
+
|
|
176
234
|
@media (min-width: $breakpoint-md) {
|
|
177
235
|
--quote-size: 1.75rem;
|
|
178
236
|
--quote-line-height: 2.25rem;
|
|
179
|
-
--heading-size1: 1.75rem;
|
|
180
|
-
--heading-line-height-size1: 2rem;
|
|
181
|
-
--heading-size2: 1.75rem;
|
|
182
|
-
--heading-line-height-size2: 2rem;
|
|
183
|
-
--heading-size3: 1.5rem;
|
|
184
|
-
--heading-line-height-size3: 1.75rem;
|
|
185
|
-
--heading-size4: 1.25rem;
|
|
186
|
-
--heading-line-height-size4: 1.5rem;
|
|
187
|
-
--heading-size5: 1rem;
|
|
188
|
-
--heading-line-height-size5: 1.25rem;
|
|
189
237
|
--string-size1: 1.25rem;
|
|
190
238
|
--string-line-height-size1: 1.5rem;
|
|
191
239
|
--string-size2: 1rem;
|
|
@@ -224,16 +272,6 @@ $breakpoint-xl: 1801px;
|
|
|
224
272
|
@media (min-width: $breakpoint-xl) {
|
|
225
273
|
--quote-size: 2rem;
|
|
226
274
|
--quote-line-height: 2.5rem;
|
|
227
|
-
--heading-size1: 2rem;
|
|
228
|
-
--heading-line-height-size1: 2.25rem;
|
|
229
|
-
--heading-size2: 2rem;
|
|
230
|
-
--heading-line-height-size2: 2.25rem;
|
|
231
|
-
--heading-size3: 1.75rem;
|
|
232
|
-
--heading-line-height-size3: 2rem;
|
|
233
|
-
--heading-size4: 1.5rem;
|
|
234
|
-
--heading-line-height-size4: 1.75rem;
|
|
235
|
-
--heading-size5: 1.25rem;
|
|
236
|
-
--heading-line-height-size5: 1.5rem;
|
|
237
275
|
--string-size1: 1.5rem;
|
|
238
276
|
--string-line-height-size1: 1.75rem;
|
|
239
277
|
--string-size2: 1.25rem;
|
|
@@ -259,6 +297,9 @@ $breakpoint-xl: 1801px;
|
|
|
259
297
|
--snw-header-link-line-height: 1.75rem;
|
|
260
298
|
--snw-flyout-link-size: 1.125rem;
|
|
261
299
|
--snw-flyout-link-line-height: 2.125rem;
|
|
300
|
+
|
|
301
|
+
// FONT SIZES
|
|
302
|
+
@include font-size-vars--lg;
|
|
262
303
|
}
|
|
263
304
|
}
|
|
264
305
|
|
|
@@ -268,18 +309,6 @@ $title-size2: var(--heading-size2);
|
|
|
268
309
|
$title-size3: var(--heading-size3);
|
|
269
310
|
$title-size4: var(--heading-size4);
|
|
270
311
|
|
|
271
|
-
// HEADING
|
|
272
|
-
$heading-size1: var(--heading-size1);
|
|
273
|
-
$heading-line-height-size1: var(--heading-line-height-size1);
|
|
274
|
-
$heading-size2: var(--heading-size2);
|
|
275
|
-
$heading-line-height-size2: var(--heading-line-height-size2);
|
|
276
|
-
$heading-size3: var(--heading-size3);
|
|
277
|
-
$heading-line-height-size3: var(--heading-line-height-size3);
|
|
278
|
-
$heading-size4: var(--heading-size4);
|
|
279
|
-
$heading-line-height-size4: var(--heading-line-height-size4);
|
|
280
|
-
$heading-size5: var(--heading-size5);
|
|
281
|
-
$heading-line-height-size5: var(--heading-line-height-size5);
|
|
282
|
-
|
|
283
312
|
// BODY
|
|
284
313
|
$body-size1: var(--body-size1);
|
|
285
314
|
$body-line-height-size1: var(--body-line-height-size1);
|
|
@@ -445,5 +474,5 @@ $search-size: var(--search-size);
|
|
|
445
474
|
$header-height: var(--header-height);
|
|
446
475
|
`;
|
|
447
476
|
export {
|
|
448
|
-
|
|
477
|
+
n as default
|
|
449
478
|
};
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&__content--lg {
|
|
37
|
-
@include text($
|
|
37
|
+
@include text($bodyMd);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&--transition[data-state='open'] {
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
&__text {
|
|
127
|
+
@include text($labelMd);
|
|
128
|
+
|
|
127
129
|
flex: auto;
|
|
128
130
|
font-variation-settings: 'wght' 600;
|
|
129
131
|
text-align: left;
|
|
130
|
-
|
|
131
|
-
@include text($string2);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
&__text--lg {
|
|
135
|
-
@include text($
|
|
135
|
+
@include text($bodyLgBold);
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
&__icon {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
&-atcb-item-link {
|
|
48
|
-
@include text($
|
|
48
|
+
@include text($bodyMd);
|
|
49
49
|
|
|
50
50
|
background: none;
|
|
51
51
|
border: none;
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
span {
|
|
69
|
-
@include text($
|
|
69
|
+
@include text($bodyMd);
|
|
70
70
|
|
|
71
71
|
font-variation-settings: 'wght' 400;
|
|
72
72
|
text-decoration: none;
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&__input {
|
|
26
|
-
@include text($
|
|
26
|
+
@include text($labelMd);
|
|
27
27
|
|
|
28
28
|
accent-color: $soft-black;
|
|
29
29
|
border: 1px solid $keyline-gray;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
&__label {
|
|
64
|
-
@include text($
|
|
64
|
+
@include text($labelMd);
|
|
65
65
|
|
|
66
66
|
color: $pure-black;
|
|
67
67
|
display: inline-block;
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
padding: $padding-micro $padding-xsm;
|
|
147
147
|
transition: background-color 0.1s ease;
|
|
148
148
|
|
|
149
|
-
@include text($
|
|
149
|
+
@include text($labelMd);
|
|
150
150
|
|
|
151
151
|
&:hover,
|
|
152
152
|
&[data-selected='true'] {
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
&__item__invalid-text {
|
|
172
|
-
@include text($
|
|
172
|
+
@include text($labelMd);
|
|
173
173
|
|
|
174
174
|
align-items: center;
|
|
175
175
|
display: flex;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-countdown {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($bodyMd);
|
|
5
5
|
|
|
6
6
|
align-items: center;
|
|
7
7
|
border-bottom: none;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&__countdown-container {
|
|
21
|
-
@include text($
|
|
21
|
+
@include text($heading4);
|
|
22
22
|
|
|
23
23
|
align-items: center;
|
|
24
24
|
display: flex;
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
@include DistinctDisplay;
|
|
30
30
|
|
|
31
31
|
color: $primary-black;
|
|
32
|
-
font-size: $
|
|
32
|
+
font-size: $font-size-sm;
|
|
33
33
|
font-variation-settings: 'wght' 600;
|
|
34
|
-
line-height: $
|
|
34
|
+
line-height: $line-height-default;
|
|
35
35
|
margin-top: 4px; // better visual align with the close icon
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
text-align: center;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-dropdown {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($bodyMd);
|
|
5
5
|
|
|
6
6
|
&__trigger {
|
|
7
7
|
align-items: center;
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
&__item {
|
|
80
|
-
@include text($
|
|
80
|
+
@include text($bodySm);
|
|
81
81
|
|
|
82
82
|
align-items: center;
|
|
83
83
|
display: flex;
|
|
@@ -37,7 +37,7 @@ $chevron-scale: 0.8;
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&__back {
|
|
40
|
-
@include text($
|
|
40
|
+
@include text($bodyMd); // workaround where the tertiary button text is not scaling at different breakpoints
|
|
41
41
|
|
|
42
42
|
margin-top: $spacing-sm;
|
|
43
43
|
}
|
|
@@ -64,7 +64,7 @@ $chevron-scale: 0.8;
|
|
|
64
64
|
height: unset;
|
|
65
65
|
|
|
66
66
|
&__label {
|
|
67
|
-
@include text($
|
|
67
|
+
@include text($labelMdBold);
|
|
68
68
|
|
|
69
69
|
color: inherit;
|
|
70
70
|
margin-bottom: 0;
|
|
@@ -84,7 +84,7 @@ $chevron-scale: 0.8;
|
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
&__view-all {
|
|
87
|
-
@include text($
|
|
87
|
+
@include text($bodyMd); // workaround where the tertiary button text is not scaling at different breakpoints
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
&.is-opening {
|
|
@@ -14,7 +14,7 @@ $lg: #{$px}-input--lg;
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&__label {
|
|
17
|
-
@include text($
|
|
17
|
+
@include text($labelMd);
|
|
18
18
|
|
|
19
19
|
color: $pure-black;
|
|
20
20
|
font-variation-settings: 'wght' 600;
|
|
@@ -28,7 +28,7 @@ $lg: #{$px}-input--lg;
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&__wrapper {
|
|
31
|
-
@include text($
|
|
31
|
+
@include text($labelMd);
|
|
32
32
|
|
|
33
33
|
accent-color: $soft-black;
|
|
34
34
|
align-items: center;
|
|
@@ -72,7 +72,7 @@ $lg: #{$px}-input--lg;
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
&__input {
|
|
75
|
-
@include text($
|
|
75
|
+
@include text($labelMd);
|
|
76
76
|
|
|
77
77
|
accent-color: $soft-black;
|
|
78
78
|
border: 1px solid $keyline-gray;
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&--email {
|
|
23
|
-
@include text($
|
|
23
|
+
@include text($labelMdBold);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&--link {
|
|
27
|
-
@include text($
|
|
27
|
+
@include text($labelMdBold);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&--snwHeaderLink {
|
|
31
|
-
@include text($
|
|
31
|
+
@include text($title2);
|
|
32
32
|
|
|
33
33
|
padding: 0.5rem 0.625rem calc(0.5rem + 2px); // 1 px so that the bottom border of the nav counts as part of the button
|
|
34
34
|
position: relative;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
&--snwFlyoutLink {
|
|
52
52
|
border-bottom: 1px solid transparent;
|
|
53
53
|
|
|
54
|
-
@include text($
|
|
54
|
+
@include text($labelLg);
|
|
55
55
|
|
|
56
56
|
&:hover,
|
|
57
57
|
&:focus-visible {
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
|
|
113
113
|
@include isHeaderMobile {
|
|
114
114
|
height: calc(var(--spacing-md) + var(--search-size));
|
|
115
|
-
line-height:
|
|
115
|
+
line-height: $line-height-default;
|
|
116
116
|
padding: $spacing-md 0;
|
|
117
117
|
position: relative;
|
|
118
118
|
top: calc($spacing-md * -1);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-text-area {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($labelMd);
|
|
5
5
|
|
|
6
6
|
accent-color: $soft-black;
|
|
7
7
|
border: 1px solid $keyline-gray;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&__label {
|
|
41
|
-
@include text($
|
|
41
|
+
@include text($labelMd);
|
|
42
42
|
|
|
43
43
|
color: $pure-black;
|
|
44
44
|
font-variation-settings: 'wght' 600;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-text-symbol {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($heading3);
|
|
5
5
|
|
|
6
6
|
display: inline-flex;
|
|
7
7
|
gap: $spacing-micro;
|
|
8
8
|
|
|
9
9
|
&--estimation {
|
|
10
|
-
@include text($
|
|
10
|
+
@include text($heading4);
|
|
11
11
|
|
|
12
12
|
margin-left: 0.25rem;
|
|
13
13
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
width: 100%;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
.#{$px}-text
|
|
39
|
+
.#{$px}-text--#{$eyebrowSm} {
|
|
40
40
|
margin-bottom: $spacing-xsm;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -46,6 +46,14 @@
|
|
|
46
46
|
margin: $spacing-xsm 0;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
&__badge {
|
|
50
|
+
border: 1px solid $badge-blue;
|
|
51
|
+
color: $badge-blue;
|
|
52
|
+
font-size: $string-size3;
|
|
53
|
+
margin: $spacing-xsm 0;
|
|
54
|
+
padding: $spacing-micro $spacing-xsm;
|
|
55
|
+
}
|
|
56
|
+
|
|
49
57
|
&__occurrence-details {
|
|
50
58
|
align-items: center;
|
|
51
59
|
display: flex;
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
width: 100%;
|
|
6
6
|
|
|
7
7
|
&__title {
|
|
8
|
-
@include text($
|
|
8
|
+
@include text($heading2);
|
|
9
9
|
|
|
10
10
|
margin-bottom: $spacing-xsm;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
&__blurb {
|
|
14
|
-
@include text($
|
|
14
|
+
@include text($bodyLg);
|
|
15
15
|
|
|
16
16
|
color: $pure-black;
|
|
17
17
|
}
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&__privacy {
|
|
30
|
-
@include text($
|
|
30
|
+
@include text($bodySm);
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
ul {
|
|
49
49
|
li {
|
|
50
50
|
a {
|
|
51
|
-
@include text(
|
|
51
|
+
@include text($labelLg);
|
|
52
52
|
|
|
53
53
|
&:hover {
|
|
54
54
|
text-decoration: underline;
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
&__text {
|
|
97
|
-
@include text(
|
|
97
|
+
@include text($title3);
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -13,7 +13,7 @@ const $ = ({
|
|
|
13
13
|
/* @__PURE__ */ o("div", { className: `${r}-footer__links`, children: a }),
|
|
14
14
|
/* @__PURE__ */ e("div", { className: `${r}-footer__copyright`, children: [
|
|
15
15
|
/* @__PURE__ */ o("h3", { "data-testid": "footer-logo", className: `${r}-footer__logo`, children: /* @__PURE__ */ o("a", { href: "/", "aria-label": "logo", children: /* @__PURE__ */ o(n, { icon: "PhillipsLogo", width: "94px" }) }) }),
|
|
16
|
-
/* @__PURE__ */ o(c, { variant: f.
|
|
16
|
+
/* @__PURE__ */ o(c, { variant: f.bodySm, children: s })
|
|
17
17
|
] })
|
|
18
18
|
] });
|
|
19
19
|
export {
|