@ilo-org/styles 0.13.2 → 0.14.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/build/css/components/index.css +1181 -794
- package/build/css/components/index.css.map +1 -1
- package/build/css/global.css +1 -1
- package/build/css/global.css.map +1 -1
- package/build/css/index.css +1181 -794
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +1181 -794
- package/build/css/monorepo.css.map +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/index.css.map +1 -1
- package/build/minified/monorepo.css +1 -1
- package/build/minified/monorepo.css.map +1 -1
- package/css/components/accordion.css +1 -1
- package/css/components/breadcrumb.css +1 -1
- package/css/components/featurecard.css +1 -1
- package/css/components/hero.css +1 -1
- package/css/components/icon.css +1 -0
- package/css/components/list.css +1 -1
- package/css/components/navigation.css +1 -1
- package/css/components/pagination.css +1 -1
- package/css/components/richtext.css +1 -1
- package/css/components/searchfield.css +1 -1
- package/css/components/tag.css +1 -1
- package/css/components/video-legacy.css +1 -0
- package/css/components/video.css +1 -1
- package/css/global.css.map +1 -1
- package/css/index.css +8 -8
- package/css/index.css.map +1 -1
- package/css/monorepo.css +8 -8
- package/css/monorepo.css.map +1 -1
- package/package.json +2 -2
- package/scss/_mixins.scss +27 -1
- package/scss/components/_accordion.scss +7 -5
- package/scss/components/_breadcrumb.scss +5 -1
- package/scss/components/_card.scss +2 -2
- package/scss/components/_cardgroup.scss +1 -1
- package/scss/components/_datacard.scss +1 -1
- package/scss/components/_detailcard.scss +1 -1
- package/scss/components/_factlistcard.scss +1 -1
- package/scss/components/_featurecard.scss +3 -11
- package/scss/components/_hero.scss +206 -214
- package/scss/components/_icon.scss +6 -0
- package/scss/components/_list.scss +0 -2
- package/scss/components/_multilinkcard.scss +2 -2
- package/scss/components/_navigation.scss +11 -9
- package/scss/components/_pagination.scss +1 -3
- package/scss/components/_profile.scss +1 -1
- package/scss/components/_promocard.scss +1 -1
- package/scss/components/_richtext.scss +14 -40
- package/scss/components/_searchfield.scss +36 -4
- package/scss/components/_tag.scss +1 -1
- package/scss/components/_video-legacy.scss +795 -0
- package/scss/components/_video.scss +191 -636
- package/scss/components/index.scss +2 -0
|
@@ -70,10 +70,6 @@
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
&--breadcrumbs {
|
|
74
|
-
display: none;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
73
|
&--background {
|
|
78
74
|
display: grid;
|
|
79
75
|
background-color: map-get($color, "base", "blue", "light");
|
|
@@ -104,264 +100,262 @@
|
|
|
104
100
|
}
|
|
105
101
|
}
|
|
106
102
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
&
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
}
|
|
103
|
+
--card-width: 625px;
|
|
104
|
+
--corner-cut-height: #{$spacing-hero-card-corner-cut-height-lg};
|
|
105
|
+
--breadcrumbs-height: 48px;
|
|
106
|
+
--image-gap: 240px;
|
|
107
|
+
|
|
108
|
+
// Defaults to baseline
|
|
109
|
+
--row-1-lg: var(--breadcrumbs-height);
|
|
110
|
+
--row-2-lg: calc(var(--image-gap) - var(--breadcrumbs-height));
|
|
111
|
+
--row-3-lg: auto;
|
|
112
|
+
--row-4-lg: #{$spacing-hero-tooltip-height};
|
|
113
|
+
--row-5-lg: 72px;
|
|
114
|
+
|
|
115
|
+
--col-1-lg: 0;
|
|
116
|
+
--col-2-lg: var(--card-width);
|
|
117
|
+
--col-3-lg: #{$spacing-hero-tooltip-width};
|
|
118
|
+
--col-4-lg: 1fr;
|
|
119
|
+
|
|
120
|
+
grid-template-rows:
|
|
121
|
+
var(--row-1-lg)
|
|
122
|
+
var(--row-2-lg)
|
|
123
|
+
var(--row-3-lg)
|
|
124
|
+
var(--row-4-lg);
|
|
125
|
+
|
|
126
|
+
grid-template-columns:
|
|
127
|
+
var(--col-1-lg)
|
|
128
|
+
var(--col-2-lg)
|
|
129
|
+
var(--col-3-lg)
|
|
130
|
+
var(--col-4-lg);
|
|
131
|
+
|
|
132
|
+
&__poster-size {
|
|
133
|
+
&__small {
|
|
134
|
+
--image-gap: 112px;
|
|
135
|
+
}
|
|
141
136
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
137
|
+
&__medium {
|
|
138
|
+
--image-gap: 176px;
|
|
139
|
+
}
|
|
145
140
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
141
|
+
&__large {
|
|
142
|
+
--image-gap: 240px;
|
|
143
|
+
}
|
|
149
144
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
145
|
+
&__xlarge {
|
|
146
|
+
--image-gap: 527px;
|
|
153
147
|
}
|
|
148
|
+
}
|
|
154
149
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
150
|
+
&__card-size {
|
|
151
|
+
&__small {
|
|
152
|
+
--card-width: 625px;
|
|
153
|
+
}
|
|
159
154
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
155
|
+
&__medium {
|
|
156
|
+
--card-width: 721px;
|
|
157
|
+
}
|
|
163
158
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
159
|
+
&__large {
|
|
160
|
+
--card-width: 856px;
|
|
161
|
+
}
|
|
167
162
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
163
|
+
&__xlarge {
|
|
164
|
+
--card-width: 920px;
|
|
165
|
+
}
|
|
171
166
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
167
|
+
&__xxlarge {
|
|
168
|
+
--card-width: 998px;
|
|
175
169
|
}
|
|
170
|
+
}
|
|
176
171
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
172
|
+
&__card-justify {
|
|
173
|
+
&__start,
|
|
174
|
+
&__offset {
|
|
175
|
+
--card-padding-start: #{$squeezy-padding-start};
|
|
176
|
+
--col-1-lg: #{$card-offset};
|
|
177
|
+
}
|
|
183
178
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
179
|
+
&__offset {
|
|
180
|
+
--added-offset: 109px;
|
|
181
|
+
}
|
|
187
182
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
183
|
+
&__center {
|
|
184
|
+
--col-1-lg: calc((100% - var(--card-width)) / 2);
|
|
185
|
+
--col-4-lg: calc(
|
|
186
|
+
((100% - var(--card-width)) / 2) - #{$spacing-hero-tooltip-width}
|
|
187
|
+
);
|
|
194
188
|
}
|
|
189
|
+
}
|
|
195
190
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
191
|
+
&__card-align {
|
|
192
|
+
&__center {
|
|
193
|
+
--row-4-lg: calc(72px - #{$spacing-hero-tooltip-height});
|
|
194
|
+
--row-5-lg: #{$spacing-hero-tooltip-height};
|
|
195
|
+
}
|
|
201
196
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
}
|
|
197
|
+
&__bottom {
|
|
198
|
+
--row-3-lg: 0;
|
|
199
|
+
--row-4-lg: var(--corner-cut-height);
|
|
200
|
+
--row-5-lg: auto;
|
|
207
201
|
}
|
|
202
|
+
}
|
|
208
203
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
204
|
+
&__card-background {
|
|
205
|
+
&__transparent {
|
|
206
|
+
#{$c}--card-offset {
|
|
207
|
+
background-color: transparent !important;
|
|
214
208
|
}
|
|
215
209
|
}
|
|
210
|
+
}
|
|
216
211
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
212
|
+
&__card-theme {
|
|
213
|
+
&__dark {
|
|
214
|
+
#{$c}--card-offset {
|
|
215
|
+
background-color: map-get($color, "base", "blue", "dark");
|
|
216
|
+
position: relative;
|
|
217
|
+
box-shadow: 0.3px 0 0 0 map-get($color, "base", "blue", "dark");
|
|
218
|
+
}
|
|
224
219
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
220
|
+
&[class*="semi-transparent"] {
|
|
221
|
+
#{$c}--card-offset {
|
|
222
|
+
background: rgba(
|
|
223
|
+
map-get($color, "hero", "card", "dark", "background"),
|
|
224
|
+
$opacity-semi-transparent
|
|
225
|
+
);
|
|
226
|
+
box-shadow: 0.3px 0 0 0
|
|
227
|
+
rgba(
|
|
228
228
|
map-get($color, "hero", "card", "dark", "background"),
|
|
229
229
|
$opacity-semi-transparent
|
|
230
230
|
);
|
|
231
|
-
box-shadow: 0.3px 0 0 0
|
|
232
|
-
rgba(
|
|
233
|
-
map-get($color, "hero", "card", "dark", "background"),
|
|
234
|
-
$opacity-semi-transparent
|
|
235
|
-
);
|
|
236
|
-
}
|
|
237
231
|
}
|
|
238
232
|
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&__light {
|
|
236
|
+
#{$c}--card-offset {
|
|
237
|
+
background: map-get($color, "hero", "card", "light", "background");
|
|
238
|
+
box-shadow: 0.3px 0 0 0
|
|
239
|
+
map-get($color, "hero", "card", "light", "background");
|
|
240
|
+
}
|
|
239
241
|
|
|
240
|
-
&
|
|
242
|
+
&[class*="semi-transparent"] {
|
|
241
243
|
#{$c}--card-offset {
|
|
242
|
-
background:
|
|
244
|
+
background: rgba(
|
|
245
|
+
map-get($color, "hero", "card", "light", "background"),
|
|
246
|
+
$opacity-semi-transparent
|
|
247
|
+
);
|
|
243
248
|
box-shadow: 0.3px 0 0 0
|
|
244
|
-
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
&[class*="semi-transparent"] {
|
|
248
|
-
#{$c}--card-offset {
|
|
249
|
-
background: rgba(
|
|
249
|
+
rgba(
|
|
250
250
|
map-get($color, "hero", "card", "light", "background"),
|
|
251
251
|
$opacity-semi-transparent
|
|
252
252
|
);
|
|
253
|
-
box-shadow: 0.3px 0 0 0
|
|
254
|
-
rgba(
|
|
255
|
-
map-get($color, "hero", "card", "light", "background"),
|
|
256
|
-
$opacity-semi-transparent
|
|
257
|
-
);
|
|
258
|
-
}
|
|
259
253
|
}
|
|
260
254
|
}
|
|
261
255
|
}
|
|
256
|
+
}
|
|
262
257
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
258
|
+
&--breadcrumbs {
|
|
259
|
+
grid-area: 1 / 1 / 2 / 5;
|
|
260
|
+
z-index: 1;
|
|
261
|
+
display: flex;
|
|
262
|
+
flex-flow: row nowrap;
|
|
268
263
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
}
|
|
264
|
+
&--wrapper {
|
|
265
|
+
width: 100%;
|
|
272
266
|
}
|
|
267
|
+
}
|
|
273
268
|
|
|
274
|
-
|
|
275
|
-
|
|
269
|
+
&--background {
|
|
270
|
+
grid-area: 1 / 1 / 5 / 5;
|
|
276
271
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
272
|
+
#{$c}__card-align__center & {
|
|
273
|
+
grid-area: 1 / 1 / 6 / 5;
|
|
274
|
+
}
|
|
280
275
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
}
|
|
276
|
+
#{$c}__card-align__bottom & {
|
|
277
|
+
grid-area: 1 / 1 / 5 / 5;
|
|
284
278
|
}
|
|
279
|
+
}
|
|
285
280
|
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
281
|
+
&--card-offset {
|
|
282
|
+
grid-area: 3 / 1 / 6 / 2;
|
|
283
|
+
z-index: 0;
|
|
284
|
+
position: relative;
|
|
290
285
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
286
|
+
#{$c}__card-justify__offset &,
|
|
287
|
+
#{$c}__card-justify__center & {
|
|
288
|
+
background: transparent !important;
|
|
289
|
+
}
|
|
295
290
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
291
|
+
#{$c}__card-align__center & {
|
|
292
|
+
grid-area: 3 / 1 / 4 / 2;
|
|
293
|
+
}
|
|
299
294
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
}
|
|
295
|
+
#{$c}__card-align__bottom & {
|
|
296
|
+
grid-area: 4 / 1 / 6 / 2;
|
|
303
297
|
}
|
|
298
|
+
}
|
|
304
299
|
|
|
305
|
-
|
|
306
|
-
|
|
300
|
+
&--card {
|
|
301
|
+
grid-area: 3 / 2 / 6 / 3;
|
|
307
302
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
303
|
+
#{$c}__card-align__center & {
|
|
304
|
+
grid-area: 3 / 2 / 4 / 3;
|
|
305
|
+
}
|
|
311
306
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
}
|
|
307
|
+
#{$c}__card-align__bottom & {
|
|
308
|
+
grid-area: 4 / 2 / 6 / 3;
|
|
315
309
|
}
|
|
310
|
+
}
|
|
316
311
|
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
312
|
+
&--caption {
|
|
313
|
+
grid-area: 4 / 3 / 5 / 4;
|
|
314
|
+
position: relative;
|
|
320
315
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
316
|
+
#{$c}__card-align__center & {
|
|
317
|
+
grid-area: 5 / 1 / 6 / 3;
|
|
318
|
+
}
|
|
324
319
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
320
|
+
#{$c}__card-align__bottom & {
|
|
321
|
+
grid-area: 4 / 1 / 5 / 2;
|
|
322
|
+
}
|
|
328
323
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
}
|
|
324
|
+
#{$c}__card-align__center &,
|
|
325
|
+
#{$c}__card-align__bottom & {
|
|
326
|
+
&--wrapper {
|
|
327
|
+
position: absolute;
|
|
328
|
+
left: 0;
|
|
329
|
+
bottom: 0;
|
|
336
330
|
}
|
|
331
|
+
}
|
|
337
332
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
333
|
+
#{$c}__card-align__bottom#{$c}__card-justify__start & {
|
|
334
|
+
grid-area: 1 / 1 / 3 / 3;
|
|
335
|
+
}
|
|
341
336
|
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
337
|
+
#{$c}__card-align__bottom#{$c}__card-justify__offset & {
|
|
338
|
+
grid-area: 1 / 2 / 3 / 3;
|
|
339
|
+
}
|
|
345
340
|
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
341
|
+
#{$c}__card-align__bottom#{$c}__card-justify__start &,
|
|
342
|
+
#{$c}__card-align__bottom#{$c}__card-justify__offset & {
|
|
343
|
+
#{$c}--caption--wrapper {
|
|
344
|
+
@include caption-icon-wrapper(
|
|
345
|
+
"right",
|
|
346
|
+
$spacing-hero-tooltip-width,
|
|
347
|
+
$spacing-hero-tooltip-height
|
|
348
|
+
);
|
|
354
349
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
}
|
|
350
|
+
position: absolute;
|
|
351
|
+
left: 0;
|
|
352
|
+
right: initial;
|
|
353
|
+
bottom: 0;
|
|
360
354
|
}
|
|
355
|
+
}
|
|
361
356
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
}
|
|
357
|
+
&--wrapper {
|
|
358
|
+
left: 2px;
|
|
365
359
|
}
|
|
366
360
|
}
|
|
367
361
|
|
|
@@ -378,22 +372,20 @@
|
|
|
378
372
|
}
|
|
379
373
|
}
|
|
380
374
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
);
|
|
375
|
+
&__card-align__bottom {
|
|
376
|
+
&#{$c}__card-justify__start,
|
|
377
|
+
&#{$c}__card-justify__offset {
|
|
378
|
+
#{$c}--caption--wrapper {
|
|
379
|
+
@include caption-icon-wrapper(
|
|
380
|
+
"left",
|
|
381
|
+
$spacing-hero-tooltip-width,
|
|
382
|
+
$spacing-hero-tooltip-height
|
|
383
|
+
);
|
|
391
384
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
}
|
|
385
|
+
position: absolute;
|
|
386
|
+
left: initial;
|
|
387
|
+
right: 0;
|
|
388
|
+
bottom: 0;
|
|
397
389
|
}
|
|
398
390
|
}
|
|
399
391
|
}
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
#{$self}--title {
|
|
36
36
|
@include font-styles("headline-5");
|
|
37
37
|
margin-bottom: spacing(8);
|
|
38
|
-
color: $brand-ilo-
|
|
38
|
+
color: $brand-ilo-black;
|
|
39
39
|
|
|
40
40
|
@include breakpoint("medium") {
|
|
41
41
|
@include font-styles("headline-4");
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
#{$self}--intro {
|
|
46
46
|
@include font-styles("body-small");
|
|
47
47
|
margin-bottom: spacing(8);
|
|
48
|
-
color: $brand-ilo-
|
|
48
|
+
color: $brand-ilo-black;
|
|
49
49
|
|
|
50
50
|
@include breakpoint("medium") {
|
|
51
51
|
@include font-styles("base");
|
|
@@ -86,17 +86,19 @@
|
|
|
86
86
|
|
|
87
87
|
&--logo {
|
|
88
88
|
display: block;
|
|
89
|
-
|
|
89
|
+
height: spacing(14);
|
|
90
|
+
|
|
91
|
+
@include breakpoint("large") {
|
|
92
|
+
height: spacing(18);
|
|
93
|
+
}
|
|
90
94
|
|
|
91
95
|
&-link {
|
|
92
96
|
display: block;
|
|
93
|
-
padding:
|
|
94
|
-
|
|
95
|
-
width: 100%;
|
|
97
|
+
padding: spacing(4) 0;
|
|
98
|
+
width: auto;
|
|
96
99
|
|
|
97
100
|
@include breakpoint("large") {
|
|
98
|
-
padding: 0 0
|
|
99
|
-
max-width: 200px;
|
|
101
|
+
padding: 0 0 spacing(6);
|
|
100
102
|
}
|
|
101
103
|
}
|
|
102
104
|
}
|
|
@@ -780,7 +782,7 @@
|
|
|
780
782
|
cursor: pointer;
|
|
781
783
|
font-family: $fonts-display;
|
|
782
784
|
font-weight: 500;
|
|
783
|
-
padding: spacing(
|
|
785
|
+
padding: spacing(5) spacing(4) spacing(4) spacing(8);
|
|
784
786
|
position: relative;
|
|
785
787
|
transition: all 150ms ease-out;
|
|
786
788
|
|
|
@@ -800,7 +802,7 @@
|
|
|
800
802
|
}
|
|
801
803
|
|
|
802
804
|
[dir="rtl"] & {
|
|
803
|
-
padding:
|
|
805
|
+
padding: spacing(5) spacing(8) spacing(4) spacing(4);
|
|
804
806
|
|
|
805
807
|
&::before {
|
|
806
808
|
@include dataurlicon("arrowright", $brand-ilo-dark-blue);
|
|
@@ -842,7 +844,7 @@
|
|
|
842
844
|
&--label {
|
|
843
845
|
@include font-styles("headline-6");
|
|
844
846
|
border-bottom: 3px solid $brand-ilo-grey-light;
|
|
845
|
-
color: $brand-ilo-
|
|
847
|
+
color: $brand-ilo-black;
|
|
846
848
|
font-family: $fonts-display;
|
|
847
849
|
font-weight: 700;
|
|
848
850
|
margin-bottom: spacing(4);
|
|
@@ -185,8 +185,6 @@
|
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
&--last-page {
|
|
188
|
-
margin: 0 0 0 spacing(2);
|
|
189
|
-
|
|
190
188
|
&::before {
|
|
191
189
|
@include dataurlicon(
|
|
192
190
|
"doublearrow",
|
|
@@ -227,7 +225,7 @@
|
|
|
227
225
|
|
|
228
226
|
&--page {
|
|
229
227
|
@include font-styles("nav-md-sm");
|
|
230
|
-
|
|
228
|
+
margin-inline-end: spacing(2);
|
|
231
229
|
font-family: $fonts-copy;
|
|
232
230
|
font-weight: 400;
|
|
233
231
|
line-height: 45px;
|
|
@@ -84,7 +84,7 @@ $avatar-size-lg: $row-1-lg;
|
|
|
84
84
|
bottom: px-to-rem(1px);
|
|
85
85
|
height: px-to-rem(24px);
|
|
86
86
|
width: px-to-rem(24px);
|
|
87
|
-
margin-inline-start:
|
|
87
|
+
margin-inline-start: spacing(2);
|
|
88
88
|
content: "";
|
|
89
89
|
@include dataurlicon("arrowright", $color-link-text-default);
|
|
90
90
|
|