@nationaldesignstudio/react 0.0.7 → 0.0.8
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/README.md +0 -4
- package/dist/assets/fonts/PPNeueMontreal-Variable.woff2 +0 -0
- package/dist/assets/react.svg +1 -0
- package/dist/components/atoms/accordion/accordion.d.ts +50 -0
- package/dist/components/{button → atoms/button}/button.d.ts +5 -4
- package/dist/components/atoms/pager-control/pager-control.d.ts +62 -0
- package/dist/components/{card → organisms/card}/card.d.ts +6 -2
- package/dist/components/{navbar → organisms/navbar}/navbar.d.ts +27 -1
- package/dist/components/sections/banner/banner.d.ts +64 -0
- package/dist/components/sections/card-grid/card-grid.d.ts +53 -0
- package/dist/components/sections/faq-section/faq-section.d.ts +44 -0
- package/dist/components/sections/hero/hero.d.ts +73 -0
- package/dist/components/sections/river/river.d.ts +63 -0
- package/dist/components/sections/tout/tout.d.ts +73 -0
- package/dist/components/sections/two-column-section/two-column-section.d.ts +58 -0
- package/dist/index.d.ts +28 -12
- package/dist/index.js +3185 -813
- package/dist/index.js.map +1 -1
- package/dist/tailwind.css +23 -0
- package/dist/tokens.css +2009 -103
- package/package.json +23 -5
- package/src/App.css +0 -0
- package/src/App.tsx +7 -0
- package/src/assets/fonts/PPNeueMontreal-Variable.woff2 +0 -0
- package/src/assets/react.svg +1 -0
- package/src/components/atoms/accordion/accordion.stories.tsx +228 -0
- package/src/components/atoms/accordion/accordion.tsx +137 -0
- package/src/components/atoms/accordion/index.ts +6 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-quiet-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-quiet-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-disabled-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-disabled-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-quiet-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-quiet-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-large-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-large-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-medium-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-medium-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-small-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-small-chromium-linux.png +0 -0
- package/src/components/atoms/button/button.stories.tsx +93 -0
- package/src/components/atoms/button/button.test.tsx +141 -0
- package/src/components/atoms/button/button.tsx +95 -0
- package/src/components/atoms/button/button.visual.test.tsx +102 -0
- package/src/components/atoms/button/icon-button.stories.tsx +175 -0
- package/src/components/atoms/button/icon-button.tsx +90 -0
- package/src/components/atoms/button/index.ts +6 -0
- package/src/components/atoms/pager-control/index.ts +5 -0
- package/src/components/atoms/pager-control/pager-control.stories.tsx +212 -0
- package/src/components/atoms/pager-control/pager-control.test.tsx +149 -0
- package/src/components/atoms/pager-control/pager-control.tsx +328 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-default-vertical-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-default-vertical-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-horizontal-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-horizontal-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-minimal-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-minimal-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-actions-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-actions-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-eyebrow-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-eyebrow-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-image-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-image-chromium-linux.png +0 -0
- package/src/components/organisms/card/card.stories.tsx +293 -0
- package/src/components/organisms/card/card.test.tsx +245 -0
- package/src/components/organisms/card/card.tsx +227 -0
- package/src/components/organisms/card/card.visual.test.tsx +197 -0
- package/src/components/organisms/card/index.ts +19 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-active-link-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-active-link-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-brand-only-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-brand-only-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-default-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-default-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/index.ts +18 -0
- package/src/components/organisms/navbar/navbar.stories.tsx +313 -0
- package/src/components/organisms/navbar/navbar.test.tsx +190 -0
- package/src/components/organisms/navbar/navbar.tsx +365 -0
- package/src/components/organisms/navbar/navbar.visual.test.tsx +85 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-icon-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-icon-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-text-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-text-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-default-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-default-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/index.ts +1 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.stories.tsx +35 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.test.tsx +107 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.tsx +73 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.visual.test.tsx +46 -0
- package/src/components/sections/banner/banner.stories.tsx +150 -0
- package/src/components/sections/banner/banner.test.tsx +185 -0
- package/src/components/sections/banner/banner.tsx +132 -0
- package/src/components/sections/banner/index.ts +2 -0
- package/src/components/sections/card-grid/card-grid.stories.tsx +351 -0
- package/src/components/sections/card-grid/card-grid.tsx +118 -0
- package/src/components/sections/card-grid/index.ts +1 -0
- package/src/components/sections/faq-section/faq-section.tsx +76 -0
- package/src/components/sections/faq-section/index.ts +2 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-custom-class-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-custom-class-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-default-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-long-title-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-long-title-chromium-linux.png +0 -0
- package/src/components/sections/hero/hero.stories.tsx +145 -0
- package/src/components/sections/hero/hero.test.tsx +135 -0
- package/src/components/sections/hero/hero.tsx +190 -0
- package/src/components/sections/hero/hero.visual.test.tsx +140 -0
- package/src/components/sections/hero/index.ts +1 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-h3-heading-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-h3-heading-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-paragraphs-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-paragraphs-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-sections-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-sections-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-single-section-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-single-section-chromium-linux.png +0 -0
- package/src/components/sections/prose/index.ts +6 -0
- package/src/components/sections/prose/prose.stories.tsx +144 -0
- package/src/components/sections/prose/prose.test.tsx +178 -0
- package/src/components/sections/prose/prose.tsx +88 -0
- package/src/components/sections/prose/prose.visual.test.tsx +105 -0
- package/src/components/sections/river/index.ts +1 -0
- package/src/components/sections/river/river.stories.tsx +237 -0
- package/src/components/sections/river/river.test.tsx +268 -0
- package/src/components/sections/river/river.tsx +175 -0
- package/src/components/sections/tout/index.ts +1 -0
- package/src/components/sections/tout/tout.stories.tsx +154 -0
- package/src/components/sections/tout/tout.test.tsx +242 -0
- package/src/components/sections/tout/tout.tsx +205 -0
- package/src/components/sections/two-column-section/index.ts +5 -0
- package/src/components/sections/two-column-section/two-column-section.stories.tsx +285 -0
- package/src/components/sections/two-column-section/two-column-section.tsx +155 -0
- package/src/index.ts +98 -0
- package/src/lib/utils.ts +6 -0
- package/src/main.tsx +13 -0
- package/src/stories/Introduction.mdx +114 -0
- package/src/stories/TokenShowcase.stories.tsx +92 -0
- package/src/stories/TokenShowcase.tsx +1352 -0
- package/src/styles.css +11 -0
- package/dist/components/hero/hero.d.ts +0 -17
- /package/dist/components/{button → atoms/button}/icon-button.d.ts +0 -0
- /package/dist/components/{us-gov-banner → organisms/us-gov-banner}/us-gov-banner.d.ts +0 -0
- /package/dist/components/{prose → sections/prose}/prose.d.ts +0 -0
package/dist/tokens.css
CHANGED
|
@@ -332,6 +332,7 @@
|
|
|
332
332
|
--leading-88: 88px;
|
|
333
333
|
--leading-96: 96px;
|
|
334
334
|
--leading-9: 11px;
|
|
335
|
+
--spacing-0: 0px;
|
|
335
336
|
--spacing-10: 10px;
|
|
336
337
|
--spacing-112: 112px;
|
|
337
338
|
--spacing-11: 11px;
|
|
@@ -369,12 +370,18 @@
|
|
|
369
370
|
--spacing-96: 96px;
|
|
370
371
|
--spacing-brand-large-component-button-gap-button-group: 16px;
|
|
371
372
|
--spacing-brand-large-component-button-gap-icon-text: 12px;
|
|
373
|
+
--spacing-brand-large-component-button-height-large: 56px;
|
|
374
|
+
--spacing-brand-large-component-button-height-medium: 40px;
|
|
375
|
+
--spacing-brand-large-component-button-height-small: 32px;
|
|
372
376
|
--spacing-brand-large-component-button-padding-x-large: 32px;
|
|
373
377
|
--spacing-brand-large-component-button-padding-x-medium: 24px;
|
|
374
378
|
--spacing-brand-large-component-button-padding-x-small: 16px;
|
|
375
379
|
--spacing-brand-large-component-button-padding-y-large: 20px;
|
|
376
380
|
--spacing-brand-large-component-button-padding-y-medium: 16px;
|
|
377
381
|
--spacing-brand-large-component-button-padding-y-small: 12px;
|
|
382
|
+
--spacing-brand-large-component-button-radius-large: 10px;
|
|
383
|
+
--spacing-brand-large-component-button-radius-medium: 8px;
|
|
384
|
+
--spacing-brand-large-component-button-radius-small: 6px;
|
|
378
385
|
--spacing-brand-large-component-card-gap-internal: 24px;
|
|
379
386
|
--spacing-brand-large-component-card-padding-large: 40px;
|
|
380
387
|
--spacing-brand-large-component-card-padding-medium: 32px;
|
|
@@ -402,6 +409,8 @@
|
|
|
402
409
|
--spacing-brand-large-layout-grid-gap-large: 48px;
|
|
403
410
|
--spacing-brand-large-layout-grid-gap-medium: 32px;
|
|
404
411
|
--spacing-brand-large-layout-grid-gap-small: 24px;
|
|
412
|
+
--spacing-brand-large-layout-grid-gutter: 20px;
|
|
413
|
+
--spacing-brand-large-layout-grid-margin: 72px;
|
|
405
414
|
--spacing-brand-large-layout-hero-gap-content-cta: 40px;
|
|
406
415
|
--spacing-brand-large-layout-hero-padding-y-large: 112px;
|
|
407
416
|
--spacing-brand-large-layout-hero-padding-y-medium: 96px;
|
|
@@ -416,12 +425,18 @@
|
|
|
416
425
|
--spacing-brand-large-layout-section-padding-y-small: 64px;
|
|
417
426
|
--spacing-brand-medium-component-button-gap-button-group: 12px;
|
|
418
427
|
--spacing-brand-medium-component-button-gap-icon-text: 12px;
|
|
428
|
+
--spacing-brand-medium-component-button-height-large: 48px;
|
|
429
|
+
--spacing-brand-medium-component-button-height-medium: 40px;
|
|
430
|
+
--spacing-brand-medium-component-button-height-small: 32px;
|
|
419
431
|
--spacing-brand-medium-component-button-padding-x-large: 24px;
|
|
420
432
|
--spacing-brand-medium-component-button-padding-x-medium: 20px;
|
|
421
433
|
--spacing-brand-medium-component-button-padding-x-small: 16px;
|
|
422
434
|
--spacing-brand-medium-component-button-padding-y-large: 16px;
|
|
423
435
|
--spacing-brand-medium-component-button-padding-y-medium: 12px;
|
|
424
436
|
--spacing-brand-medium-component-button-padding-y-small: 8px;
|
|
437
|
+
--spacing-brand-medium-component-button-radius-large: 8px;
|
|
438
|
+
--spacing-brand-medium-component-button-radius-medium: 6px;
|
|
439
|
+
--spacing-brand-medium-component-button-radius-small: 4px;
|
|
425
440
|
--spacing-brand-medium-component-card-gap-internal: 20px;
|
|
426
441
|
--spacing-brand-medium-component-card-padding-large: 32px;
|
|
427
442
|
--spacing-brand-medium-component-card-padding-medium: 24px;
|
|
@@ -449,6 +464,8 @@
|
|
|
449
464
|
--spacing-brand-medium-layout-grid-gap-large: 32px;
|
|
450
465
|
--spacing-brand-medium-layout-grid-gap-medium: 24px;
|
|
451
466
|
--spacing-brand-medium-layout-grid-gap-small: 20px;
|
|
467
|
+
--spacing-brand-medium-layout-grid-gutter: 0px;
|
|
468
|
+
--spacing-brand-medium-layout-grid-margin: 56px;
|
|
452
469
|
--spacing-brand-medium-layout-hero-gap-content-cta: 32px;
|
|
453
470
|
--spacing-brand-medium-layout-hero-padding-y-large: 80px;
|
|
454
471
|
--spacing-brand-medium-layout-hero-padding-y-medium: 72px;
|
|
@@ -463,12 +480,18 @@
|
|
|
463
480
|
--spacing-brand-medium-layout-section-padding-y-small: 48px;
|
|
464
481
|
--spacing-brand-small-component-button-gap-button-group: 12px;
|
|
465
482
|
--spacing-brand-small-component-button-gap-icon-text: 8px;
|
|
483
|
+
--spacing-brand-small-component-button-height-large: 40px;
|
|
484
|
+
--spacing-brand-small-component-button-height-medium: 36px;
|
|
485
|
+
--spacing-brand-small-component-button-height-small: 28px;
|
|
466
486
|
--spacing-brand-small-component-button-padding-x-large: 20px;
|
|
467
487
|
--spacing-brand-small-component-button-padding-x-medium: 16px;
|
|
468
488
|
--spacing-brand-small-component-button-padding-x-small: 12px;
|
|
469
489
|
--spacing-brand-small-component-button-padding-y-large: 12px;
|
|
470
490
|
--spacing-brand-small-component-button-padding-y-medium: 10px;
|
|
471
491
|
--spacing-brand-small-component-button-padding-y-small: 8px;
|
|
492
|
+
--spacing-brand-small-component-button-radius-large: 6px;
|
|
493
|
+
--spacing-brand-small-component-button-radius-medium: 4px;
|
|
494
|
+
--spacing-brand-small-component-button-radius-small: 4px;
|
|
472
495
|
--spacing-brand-small-component-card-gap-internal: 16px;
|
|
473
496
|
--spacing-brand-small-component-card-padding-large: 24px;
|
|
474
497
|
--spacing-brand-small-component-card-padding-medium: 20px;
|
|
@@ -496,6 +519,8 @@
|
|
|
496
519
|
--spacing-brand-small-layout-grid-gap-large: 24px;
|
|
497
520
|
--spacing-brand-small-layout-grid-gap-medium: 20px;
|
|
498
521
|
--spacing-brand-small-layout-grid-gap-small: 16px;
|
|
522
|
+
--spacing-brand-small-layout-grid-gutter: 0px;
|
|
523
|
+
--spacing-brand-small-layout-grid-margin: 20px;
|
|
499
524
|
--spacing-brand-small-layout-hero-gap-content-cta: 24px;
|
|
500
525
|
--spacing-brand-small-layout-hero-padding-y-large: 64px;
|
|
501
526
|
--spacing-brand-small-layout-hero-padding-y-medium: 56px;
|
|
@@ -896,6 +921,7 @@
|
|
|
896
921
|
--leading-88: var(--leading-88);
|
|
897
922
|
--leading-96: var(--leading-96);
|
|
898
923
|
--leading-9: var(--leading-9);
|
|
924
|
+
--spacing-0: var(--spacing-0);
|
|
899
925
|
--spacing-10: var(--spacing-10);
|
|
900
926
|
--spacing-112: var(--spacing-112);
|
|
901
927
|
--spacing-11: var(--spacing-11);
|
|
@@ -933,12 +959,18 @@
|
|
|
933
959
|
--spacing-96: var(--spacing-96);
|
|
934
960
|
--spacing-brand-large-component-button-gap-button-group: var(--spacing-brand-large-component-button-gap-button-group);
|
|
935
961
|
--spacing-brand-large-component-button-gap-icon-text: var(--spacing-brand-large-component-button-gap-icon-text);
|
|
962
|
+
--spacing-brand-large-component-button-height-large: var(--spacing-brand-large-component-button-height-large);
|
|
963
|
+
--spacing-brand-large-component-button-height-medium: var(--spacing-brand-large-component-button-height-medium);
|
|
964
|
+
--spacing-brand-large-component-button-height-small: var(--spacing-brand-large-component-button-height-small);
|
|
936
965
|
--spacing-brand-large-component-button-padding-x-large: var(--spacing-brand-large-component-button-padding-x-large);
|
|
937
966
|
--spacing-brand-large-component-button-padding-x-medium: var(--spacing-brand-large-component-button-padding-x-medium);
|
|
938
967
|
--spacing-brand-large-component-button-padding-x-small: var(--spacing-brand-large-component-button-padding-x-small);
|
|
939
968
|
--spacing-brand-large-component-button-padding-y-large: var(--spacing-brand-large-component-button-padding-y-large);
|
|
940
969
|
--spacing-brand-large-component-button-padding-y-medium: var(--spacing-brand-large-component-button-padding-y-medium);
|
|
941
970
|
--spacing-brand-large-component-button-padding-y-small: var(--spacing-brand-large-component-button-padding-y-small);
|
|
971
|
+
--spacing-brand-large-component-button-radius-large: var(--spacing-brand-large-component-button-radius-large);
|
|
972
|
+
--spacing-brand-large-component-button-radius-medium: var(--spacing-brand-large-component-button-radius-medium);
|
|
973
|
+
--spacing-brand-large-component-button-radius-small: var(--spacing-brand-large-component-button-radius-small);
|
|
942
974
|
--spacing-brand-large-component-card-gap-internal: var(--spacing-brand-large-component-card-gap-internal);
|
|
943
975
|
--spacing-brand-large-component-card-padding-large: var(--spacing-brand-large-component-card-padding-large);
|
|
944
976
|
--spacing-brand-large-component-card-padding-medium: var(--spacing-brand-large-component-card-padding-medium);
|
|
@@ -966,6 +998,8 @@
|
|
|
966
998
|
--spacing-brand-large-layout-grid-gap-large: var(--spacing-brand-large-layout-grid-gap-large);
|
|
967
999
|
--spacing-brand-large-layout-grid-gap-medium: var(--spacing-brand-large-layout-grid-gap-medium);
|
|
968
1000
|
--spacing-brand-large-layout-grid-gap-small: var(--spacing-brand-large-layout-grid-gap-small);
|
|
1001
|
+
--spacing-brand-large-layout-grid-gutter: var(--spacing-brand-large-layout-grid-gutter);
|
|
1002
|
+
--spacing-brand-large-layout-grid-margin: var(--spacing-brand-large-layout-grid-margin);
|
|
969
1003
|
--spacing-brand-large-layout-hero-gap-content-cta: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
970
1004
|
--spacing-brand-large-layout-hero-padding-y-large: var(--spacing-brand-large-layout-hero-padding-y-large);
|
|
971
1005
|
--spacing-brand-large-layout-hero-padding-y-medium: var(--spacing-brand-large-layout-hero-padding-y-medium);
|
|
@@ -980,12 +1014,18 @@
|
|
|
980
1014
|
--spacing-brand-large-layout-section-padding-y-small: var(--spacing-brand-large-layout-section-padding-y-small);
|
|
981
1015
|
--spacing-brand-medium-component-button-gap-button-group: var(--spacing-brand-medium-component-button-gap-button-group);
|
|
982
1016
|
--spacing-brand-medium-component-button-gap-icon-text: var(--spacing-brand-medium-component-button-gap-icon-text);
|
|
1017
|
+
--spacing-brand-medium-component-button-height-large: var(--spacing-brand-medium-component-button-height-large);
|
|
1018
|
+
--spacing-brand-medium-component-button-height-medium: var(--spacing-brand-medium-component-button-height-medium);
|
|
1019
|
+
--spacing-brand-medium-component-button-height-small: var(--spacing-brand-medium-component-button-height-small);
|
|
983
1020
|
--spacing-brand-medium-component-button-padding-x-large: var(--spacing-brand-medium-component-button-padding-x-large);
|
|
984
1021
|
--spacing-brand-medium-component-button-padding-x-medium: var(--spacing-brand-medium-component-button-padding-x-medium);
|
|
985
1022
|
--spacing-brand-medium-component-button-padding-x-small: var(--spacing-brand-medium-component-button-padding-x-small);
|
|
986
1023
|
--spacing-brand-medium-component-button-padding-y-large: var(--spacing-brand-medium-component-button-padding-y-large);
|
|
987
1024
|
--spacing-brand-medium-component-button-padding-y-medium: var(--spacing-brand-medium-component-button-padding-y-medium);
|
|
988
1025
|
--spacing-brand-medium-component-button-padding-y-small: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
1026
|
+
--spacing-brand-medium-component-button-radius-large: var(--spacing-brand-medium-component-button-radius-large);
|
|
1027
|
+
--spacing-brand-medium-component-button-radius-medium: var(--spacing-brand-medium-component-button-radius-medium);
|
|
1028
|
+
--spacing-brand-medium-component-button-radius-small: var(--spacing-brand-medium-component-button-radius-small);
|
|
989
1029
|
--spacing-brand-medium-component-card-gap-internal: var(--spacing-brand-medium-component-card-gap-internal);
|
|
990
1030
|
--spacing-brand-medium-component-card-padding-large: var(--spacing-brand-medium-component-card-padding-large);
|
|
991
1031
|
--spacing-brand-medium-component-card-padding-medium: var(--spacing-brand-medium-component-card-padding-medium);
|
|
@@ -1013,6 +1053,8 @@
|
|
|
1013
1053
|
--spacing-brand-medium-layout-grid-gap-large: var(--spacing-brand-medium-layout-grid-gap-large);
|
|
1014
1054
|
--spacing-brand-medium-layout-grid-gap-medium: var(--spacing-brand-medium-layout-grid-gap-medium);
|
|
1015
1055
|
--spacing-brand-medium-layout-grid-gap-small: var(--spacing-brand-medium-layout-grid-gap-small);
|
|
1056
|
+
--spacing-brand-medium-layout-grid-gutter: var(--spacing-brand-medium-layout-grid-gutter);
|
|
1057
|
+
--spacing-brand-medium-layout-grid-margin: var(--spacing-brand-medium-layout-grid-margin);
|
|
1016
1058
|
--spacing-brand-medium-layout-hero-gap-content-cta: var(--spacing-brand-medium-layout-hero-gap-content-cta);
|
|
1017
1059
|
--spacing-brand-medium-layout-hero-padding-y-large: var(--spacing-brand-medium-layout-hero-padding-y-large);
|
|
1018
1060
|
--spacing-brand-medium-layout-hero-padding-y-medium: var(--spacing-brand-medium-layout-hero-padding-y-medium);
|
|
@@ -1027,12 +1069,18 @@
|
|
|
1027
1069
|
--spacing-brand-medium-layout-section-padding-y-small: var(--spacing-brand-medium-layout-section-padding-y-small);
|
|
1028
1070
|
--spacing-brand-small-component-button-gap-button-group: var(--spacing-brand-small-component-button-gap-button-group);
|
|
1029
1071
|
--spacing-brand-small-component-button-gap-icon-text: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
1072
|
+
--spacing-brand-small-component-button-height-large: var(--spacing-brand-small-component-button-height-large);
|
|
1073
|
+
--spacing-brand-small-component-button-height-medium: var(--spacing-brand-small-component-button-height-medium);
|
|
1074
|
+
--spacing-brand-small-component-button-height-small: var(--spacing-brand-small-component-button-height-small);
|
|
1030
1075
|
--spacing-brand-small-component-button-padding-x-large: var(--spacing-brand-small-component-button-padding-x-large);
|
|
1031
1076
|
--spacing-brand-small-component-button-padding-x-medium: var(--spacing-brand-small-component-button-padding-x-medium);
|
|
1032
1077
|
--spacing-brand-small-component-button-padding-x-small: var(--spacing-brand-small-component-button-padding-x-small);
|
|
1033
1078
|
--spacing-brand-small-component-button-padding-y-large: var(--spacing-brand-small-component-button-padding-y-large);
|
|
1034
1079
|
--spacing-brand-small-component-button-padding-y-medium: var(--spacing-brand-small-component-button-padding-y-medium);
|
|
1035
1080
|
--spacing-brand-small-component-button-padding-y-small: var(--spacing-brand-small-component-button-padding-y-small);
|
|
1081
|
+
--spacing-brand-small-component-button-radius-large: var(--spacing-brand-small-component-button-radius-large);
|
|
1082
|
+
--spacing-brand-small-component-button-radius-medium: var(--spacing-brand-small-component-button-radius-medium);
|
|
1083
|
+
--spacing-brand-small-component-button-radius-small: var(--spacing-brand-small-component-button-radius-small);
|
|
1036
1084
|
--spacing-brand-small-component-card-gap-internal: var(--spacing-brand-small-component-card-gap-internal);
|
|
1037
1085
|
--spacing-brand-small-component-card-padding-large: var(--spacing-brand-small-component-card-padding-large);
|
|
1038
1086
|
--spacing-brand-small-component-card-padding-medium: var(--spacing-brand-small-component-card-padding-medium);
|
|
@@ -1060,6 +1108,8 @@
|
|
|
1060
1108
|
--spacing-brand-small-layout-grid-gap-large: var(--spacing-brand-small-layout-grid-gap-large);
|
|
1061
1109
|
--spacing-brand-small-layout-grid-gap-medium: var(--spacing-brand-small-layout-grid-gap-medium);
|
|
1062
1110
|
--spacing-brand-small-layout-grid-gap-small: var(--spacing-brand-small-layout-grid-gap-small);
|
|
1111
|
+
--spacing-brand-small-layout-grid-gutter: var(--spacing-brand-small-layout-grid-gutter);
|
|
1112
|
+
--spacing-brand-small-layout-grid-margin: var(--spacing-brand-small-layout-grid-margin);
|
|
1063
1113
|
--spacing-brand-small-layout-hero-gap-content-cta: var(--spacing-brand-small-layout-hero-gap-content-cta);
|
|
1064
1114
|
--spacing-brand-small-layout-hero-padding-y-large: var(--spacing-brand-small-layout-hero-padding-y-large);
|
|
1065
1115
|
--spacing-brand-small-layout-hero-padding-y-medium: var(--spacing-brand-small-layout-hero-padding-y-medium);
|
|
@@ -1130,6 +1180,8 @@
|
|
|
1130
1180
|
|
|
1131
1181
|
/* Tailwind CSS Defaults */
|
|
1132
1182
|
|
|
1183
|
+
--spacing: 2px;
|
|
1184
|
+
|
|
1133
1185
|
--color-white: color(srgb 1 1 1);
|
|
1134
1186
|
--color-black: color(srgb 0 0 0);
|
|
1135
1187
|
|
|
@@ -3351,6 +3403,78 @@
|
|
|
3351
3403
|
}
|
|
3352
3404
|
|
|
3353
3405
|
|
|
3406
|
+
@utility w-spacing-0 {
|
|
3407
|
+
width: var(--spacing-0);
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
@utility h-spacing-0 {
|
|
3411
|
+
height: var(--spacing-0);
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
@utility gap-spacing-0 {
|
|
3415
|
+
gap: var(--spacing-0);
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
@utility p-spacing-0 {
|
|
3419
|
+
padding: var(--spacing-0);
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
@utility px-spacing-0 {
|
|
3423
|
+
padding-left: var(--spacing-0);
|
|
3424
|
+
padding-right: var(--spacing-0);
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
@utility py-spacing-0 {
|
|
3428
|
+
padding-top: var(--spacing-0);
|
|
3429
|
+
padding-bottom: var(--spacing-0);
|
|
3430
|
+
}
|
|
3431
|
+
|
|
3432
|
+
@utility pt-spacing-0 {
|
|
3433
|
+
padding-top: var(--spacing-0);
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
@utility pr-spacing-0 {
|
|
3437
|
+
padding-right: var(--spacing-0);
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3440
|
+
@utility pb-spacing-0 {
|
|
3441
|
+
padding-bottom: var(--spacing-0);
|
|
3442
|
+
}
|
|
3443
|
+
|
|
3444
|
+
@utility pl-spacing-0 {
|
|
3445
|
+
padding-left: var(--spacing-0);
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
@utility m-spacing-0 {
|
|
3449
|
+
margin: var(--spacing-0);
|
|
3450
|
+
}
|
|
3451
|
+
|
|
3452
|
+
@utility mx-spacing-0 {
|
|
3453
|
+
margin-left: var(--spacing-0);
|
|
3454
|
+
margin-right: var(--spacing-0);
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
@utility my-spacing-0 {
|
|
3458
|
+
margin-top: var(--spacing-0);
|
|
3459
|
+
margin-bottom: var(--spacing-0);
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
@utility mt-spacing-0 {
|
|
3463
|
+
margin-top: var(--spacing-0);
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
@utility mr-spacing-0 {
|
|
3467
|
+
margin-right: var(--spacing-0);
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
@utility mb-spacing-0 {
|
|
3471
|
+
margin-bottom: var(--spacing-0);
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
@utility ml-spacing-0 {
|
|
3475
|
+
margin-left: var(--spacing-0);
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3354
3478
|
@utility w-spacing-2 {
|
|
3355
3479
|
width: var(--spacing-2);
|
|
3356
3480
|
}
|
|
@@ -6015,6 +6139,222 @@
|
|
|
6015
6139
|
margin-left: var(--spacing-brand-large-component-button-gap-icon-text);
|
|
6016
6140
|
}
|
|
6017
6141
|
|
|
6142
|
+
@utility w-spacing-brand-large-component-button-height-large {
|
|
6143
|
+
width: var(--spacing-brand-large-component-button-height-large);
|
|
6144
|
+
}
|
|
6145
|
+
|
|
6146
|
+
@utility h-spacing-brand-large-component-button-height-large {
|
|
6147
|
+
height: var(--spacing-brand-large-component-button-height-large);
|
|
6148
|
+
}
|
|
6149
|
+
|
|
6150
|
+
@utility gap-spacing-brand-large-component-button-height-large {
|
|
6151
|
+
gap: var(--spacing-brand-large-component-button-height-large);
|
|
6152
|
+
}
|
|
6153
|
+
|
|
6154
|
+
@utility p-spacing-brand-large-component-button-height-large {
|
|
6155
|
+
padding: var(--spacing-brand-large-component-button-height-large);
|
|
6156
|
+
}
|
|
6157
|
+
|
|
6158
|
+
@utility px-spacing-brand-large-component-button-height-large {
|
|
6159
|
+
padding-left: var(--spacing-brand-large-component-button-height-large);
|
|
6160
|
+
padding-right: var(--spacing-brand-large-component-button-height-large);
|
|
6161
|
+
}
|
|
6162
|
+
|
|
6163
|
+
@utility py-spacing-brand-large-component-button-height-large {
|
|
6164
|
+
padding-top: var(--spacing-brand-large-component-button-height-large);
|
|
6165
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-large);
|
|
6166
|
+
}
|
|
6167
|
+
|
|
6168
|
+
@utility pt-spacing-brand-large-component-button-height-large {
|
|
6169
|
+
padding-top: var(--spacing-brand-large-component-button-height-large);
|
|
6170
|
+
}
|
|
6171
|
+
|
|
6172
|
+
@utility pr-spacing-brand-large-component-button-height-large {
|
|
6173
|
+
padding-right: var(--spacing-brand-large-component-button-height-large);
|
|
6174
|
+
}
|
|
6175
|
+
|
|
6176
|
+
@utility pb-spacing-brand-large-component-button-height-large {
|
|
6177
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-large);
|
|
6178
|
+
}
|
|
6179
|
+
|
|
6180
|
+
@utility pl-spacing-brand-large-component-button-height-large {
|
|
6181
|
+
padding-left: var(--spacing-brand-large-component-button-height-large);
|
|
6182
|
+
}
|
|
6183
|
+
|
|
6184
|
+
@utility m-spacing-brand-large-component-button-height-large {
|
|
6185
|
+
margin: var(--spacing-brand-large-component-button-height-large);
|
|
6186
|
+
}
|
|
6187
|
+
|
|
6188
|
+
@utility mx-spacing-brand-large-component-button-height-large {
|
|
6189
|
+
margin-left: var(--spacing-brand-large-component-button-height-large);
|
|
6190
|
+
margin-right: var(--spacing-brand-large-component-button-height-large);
|
|
6191
|
+
}
|
|
6192
|
+
|
|
6193
|
+
@utility my-spacing-brand-large-component-button-height-large {
|
|
6194
|
+
margin-top: var(--spacing-brand-large-component-button-height-large);
|
|
6195
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-large);
|
|
6196
|
+
}
|
|
6197
|
+
|
|
6198
|
+
@utility mt-spacing-brand-large-component-button-height-large {
|
|
6199
|
+
margin-top: var(--spacing-brand-large-component-button-height-large);
|
|
6200
|
+
}
|
|
6201
|
+
|
|
6202
|
+
@utility mr-spacing-brand-large-component-button-height-large {
|
|
6203
|
+
margin-right: var(--spacing-brand-large-component-button-height-large);
|
|
6204
|
+
}
|
|
6205
|
+
|
|
6206
|
+
@utility mb-spacing-brand-large-component-button-height-large {
|
|
6207
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-large);
|
|
6208
|
+
}
|
|
6209
|
+
|
|
6210
|
+
@utility ml-spacing-brand-large-component-button-height-large {
|
|
6211
|
+
margin-left: var(--spacing-brand-large-component-button-height-large);
|
|
6212
|
+
}
|
|
6213
|
+
|
|
6214
|
+
@utility w-spacing-brand-large-component-button-height-medium {
|
|
6215
|
+
width: var(--spacing-brand-large-component-button-height-medium);
|
|
6216
|
+
}
|
|
6217
|
+
|
|
6218
|
+
@utility h-spacing-brand-large-component-button-height-medium {
|
|
6219
|
+
height: var(--spacing-brand-large-component-button-height-medium);
|
|
6220
|
+
}
|
|
6221
|
+
|
|
6222
|
+
@utility gap-spacing-brand-large-component-button-height-medium {
|
|
6223
|
+
gap: var(--spacing-brand-large-component-button-height-medium);
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
@utility p-spacing-brand-large-component-button-height-medium {
|
|
6227
|
+
padding: var(--spacing-brand-large-component-button-height-medium);
|
|
6228
|
+
}
|
|
6229
|
+
|
|
6230
|
+
@utility px-spacing-brand-large-component-button-height-medium {
|
|
6231
|
+
padding-left: var(--spacing-brand-large-component-button-height-medium);
|
|
6232
|
+
padding-right: var(--spacing-brand-large-component-button-height-medium);
|
|
6233
|
+
}
|
|
6234
|
+
|
|
6235
|
+
@utility py-spacing-brand-large-component-button-height-medium {
|
|
6236
|
+
padding-top: var(--spacing-brand-large-component-button-height-medium);
|
|
6237
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-medium);
|
|
6238
|
+
}
|
|
6239
|
+
|
|
6240
|
+
@utility pt-spacing-brand-large-component-button-height-medium {
|
|
6241
|
+
padding-top: var(--spacing-brand-large-component-button-height-medium);
|
|
6242
|
+
}
|
|
6243
|
+
|
|
6244
|
+
@utility pr-spacing-brand-large-component-button-height-medium {
|
|
6245
|
+
padding-right: var(--spacing-brand-large-component-button-height-medium);
|
|
6246
|
+
}
|
|
6247
|
+
|
|
6248
|
+
@utility pb-spacing-brand-large-component-button-height-medium {
|
|
6249
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-medium);
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
@utility pl-spacing-brand-large-component-button-height-medium {
|
|
6253
|
+
padding-left: var(--spacing-brand-large-component-button-height-medium);
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
@utility m-spacing-brand-large-component-button-height-medium {
|
|
6257
|
+
margin: var(--spacing-brand-large-component-button-height-medium);
|
|
6258
|
+
}
|
|
6259
|
+
|
|
6260
|
+
@utility mx-spacing-brand-large-component-button-height-medium {
|
|
6261
|
+
margin-left: var(--spacing-brand-large-component-button-height-medium);
|
|
6262
|
+
margin-right: var(--spacing-brand-large-component-button-height-medium);
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
@utility my-spacing-brand-large-component-button-height-medium {
|
|
6266
|
+
margin-top: var(--spacing-brand-large-component-button-height-medium);
|
|
6267
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-medium);
|
|
6268
|
+
}
|
|
6269
|
+
|
|
6270
|
+
@utility mt-spacing-brand-large-component-button-height-medium {
|
|
6271
|
+
margin-top: var(--spacing-brand-large-component-button-height-medium);
|
|
6272
|
+
}
|
|
6273
|
+
|
|
6274
|
+
@utility mr-spacing-brand-large-component-button-height-medium {
|
|
6275
|
+
margin-right: var(--spacing-brand-large-component-button-height-medium);
|
|
6276
|
+
}
|
|
6277
|
+
|
|
6278
|
+
@utility mb-spacing-brand-large-component-button-height-medium {
|
|
6279
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-medium);
|
|
6280
|
+
}
|
|
6281
|
+
|
|
6282
|
+
@utility ml-spacing-brand-large-component-button-height-medium {
|
|
6283
|
+
margin-left: var(--spacing-brand-large-component-button-height-medium);
|
|
6284
|
+
}
|
|
6285
|
+
|
|
6286
|
+
@utility w-spacing-brand-large-component-button-height-small {
|
|
6287
|
+
width: var(--spacing-brand-large-component-button-height-small);
|
|
6288
|
+
}
|
|
6289
|
+
|
|
6290
|
+
@utility h-spacing-brand-large-component-button-height-small {
|
|
6291
|
+
height: var(--spacing-brand-large-component-button-height-small);
|
|
6292
|
+
}
|
|
6293
|
+
|
|
6294
|
+
@utility gap-spacing-brand-large-component-button-height-small {
|
|
6295
|
+
gap: var(--spacing-brand-large-component-button-height-small);
|
|
6296
|
+
}
|
|
6297
|
+
|
|
6298
|
+
@utility p-spacing-brand-large-component-button-height-small {
|
|
6299
|
+
padding: var(--spacing-brand-large-component-button-height-small);
|
|
6300
|
+
}
|
|
6301
|
+
|
|
6302
|
+
@utility px-spacing-brand-large-component-button-height-small {
|
|
6303
|
+
padding-left: var(--spacing-brand-large-component-button-height-small);
|
|
6304
|
+
padding-right: var(--spacing-brand-large-component-button-height-small);
|
|
6305
|
+
}
|
|
6306
|
+
|
|
6307
|
+
@utility py-spacing-brand-large-component-button-height-small {
|
|
6308
|
+
padding-top: var(--spacing-brand-large-component-button-height-small);
|
|
6309
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-small);
|
|
6310
|
+
}
|
|
6311
|
+
|
|
6312
|
+
@utility pt-spacing-brand-large-component-button-height-small {
|
|
6313
|
+
padding-top: var(--spacing-brand-large-component-button-height-small);
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
@utility pr-spacing-brand-large-component-button-height-small {
|
|
6317
|
+
padding-right: var(--spacing-brand-large-component-button-height-small);
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6320
|
+
@utility pb-spacing-brand-large-component-button-height-small {
|
|
6321
|
+
padding-bottom: var(--spacing-brand-large-component-button-height-small);
|
|
6322
|
+
}
|
|
6323
|
+
|
|
6324
|
+
@utility pl-spacing-brand-large-component-button-height-small {
|
|
6325
|
+
padding-left: var(--spacing-brand-large-component-button-height-small);
|
|
6326
|
+
}
|
|
6327
|
+
|
|
6328
|
+
@utility m-spacing-brand-large-component-button-height-small {
|
|
6329
|
+
margin: var(--spacing-brand-large-component-button-height-small);
|
|
6330
|
+
}
|
|
6331
|
+
|
|
6332
|
+
@utility mx-spacing-brand-large-component-button-height-small {
|
|
6333
|
+
margin-left: var(--spacing-brand-large-component-button-height-small);
|
|
6334
|
+
margin-right: var(--spacing-brand-large-component-button-height-small);
|
|
6335
|
+
}
|
|
6336
|
+
|
|
6337
|
+
@utility my-spacing-brand-large-component-button-height-small {
|
|
6338
|
+
margin-top: var(--spacing-brand-large-component-button-height-small);
|
|
6339
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-small);
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6342
|
+
@utility mt-spacing-brand-large-component-button-height-small {
|
|
6343
|
+
margin-top: var(--spacing-brand-large-component-button-height-small);
|
|
6344
|
+
}
|
|
6345
|
+
|
|
6346
|
+
@utility mr-spacing-brand-large-component-button-height-small {
|
|
6347
|
+
margin-right: var(--spacing-brand-large-component-button-height-small);
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
@utility mb-spacing-brand-large-component-button-height-small {
|
|
6351
|
+
margin-bottom: var(--spacing-brand-large-component-button-height-small);
|
|
6352
|
+
}
|
|
6353
|
+
|
|
6354
|
+
@utility ml-spacing-brand-large-component-button-height-small {
|
|
6355
|
+
margin-left: var(--spacing-brand-large-component-button-height-small);
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6018
6358
|
@utility w-spacing-brand-large-component-button-padding-x-large {
|
|
6019
6359
|
width: var(--spacing-brand-large-component-button-padding-x-large);
|
|
6020
6360
|
}
|
|
@@ -6447,6 +6787,222 @@
|
|
|
6447
6787
|
margin-left: var(--spacing-brand-large-component-button-padding-y-small);
|
|
6448
6788
|
}
|
|
6449
6789
|
|
|
6790
|
+
@utility w-spacing-brand-large-component-button-radius-large {
|
|
6791
|
+
width: var(--spacing-brand-large-component-button-radius-large);
|
|
6792
|
+
}
|
|
6793
|
+
|
|
6794
|
+
@utility h-spacing-brand-large-component-button-radius-large {
|
|
6795
|
+
height: var(--spacing-brand-large-component-button-radius-large);
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6798
|
+
@utility gap-spacing-brand-large-component-button-radius-large {
|
|
6799
|
+
gap: var(--spacing-brand-large-component-button-radius-large);
|
|
6800
|
+
}
|
|
6801
|
+
|
|
6802
|
+
@utility p-spacing-brand-large-component-button-radius-large {
|
|
6803
|
+
padding: var(--spacing-brand-large-component-button-radius-large);
|
|
6804
|
+
}
|
|
6805
|
+
|
|
6806
|
+
@utility px-spacing-brand-large-component-button-radius-large {
|
|
6807
|
+
padding-left: var(--spacing-brand-large-component-button-radius-large);
|
|
6808
|
+
padding-right: var(--spacing-brand-large-component-button-radius-large);
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6811
|
+
@utility py-spacing-brand-large-component-button-radius-large {
|
|
6812
|
+
padding-top: var(--spacing-brand-large-component-button-radius-large);
|
|
6813
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-large);
|
|
6814
|
+
}
|
|
6815
|
+
|
|
6816
|
+
@utility pt-spacing-brand-large-component-button-radius-large {
|
|
6817
|
+
padding-top: var(--spacing-brand-large-component-button-radius-large);
|
|
6818
|
+
}
|
|
6819
|
+
|
|
6820
|
+
@utility pr-spacing-brand-large-component-button-radius-large {
|
|
6821
|
+
padding-right: var(--spacing-brand-large-component-button-radius-large);
|
|
6822
|
+
}
|
|
6823
|
+
|
|
6824
|
+
@utility pb-spacing-brand-large-component-button-radius-large {
|
|
6825
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-large);
|
|
6826
|
+
}
|
|
6827
|
+
|
|
6828
|
+
@utility pl-spacing-brand-large-component-button-radius-large {
|
|
6829
|
+
padding-left: var(--spacing-brand-large-component-button-radius-large);
|
|
6830
|
+
}
|
|
6831
|
+
|
|
6832
|
+
@utility m-spacing-brand-large-component-button-radius-large {
|
|
6833
|
+
margin: var(--spacing-brand-large-component-button-radius-large);
|
|
6834
|
+
}
|
|
6835
|
+
|
|
6836
|
+
@utility mx-spacing-brand-large-component-button-radius-large {
|
|
6837
|
+
margin-left: var(--spacing-brand-large-component-button-radius-large);
|
|
6838
|
+
margin-right: var(--spacing-brand-large-component-button-radius-large);
|
|
6839
|
+
}
|
|
6840
|
+
|
|
6841
|
+
@utility my-spacing-brand-large-component-button-radius-large {
|
|
6842
|
+
margin-top: var(--spacing-brand-large-component-button-radius-large);
|
|
6843
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-large);
|
|
6844
|
+
}
|
|
6845
|
+
|
|
6846
|
+
@utility mt-spacing-brand-large-component-button-radius-large {
|
|
6847
|
+
margin-top: var(--spacing-brand-large-component-button-radius-large);
|
|
6848
|
+
}
|
|
6849
|
+
|
|
6850
|
+
@utility mr-spacing-brand-large-component-button-radius-large {
|
|
6851
|
+
margin-right: var(--spacing-brand-large-component-button-radius-large);
|
|
6852
|
+
}
|
|
6853
|
+
|
|
6854
|
+
@utility mb-spacing-brand-large-component-button-radius-large {
|
|
6855
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-large);
|
|
6856
|
+
}
|
|
6857
|
+
|
|
6858
|
+
@utility ml-spacing-brand-large-component-button-radius-large {
|
|
6859
|
+
margin-left: var(--spacing-brand-large-component-button-radius-large);
|
|
6860
|
+
}
|
|
6861
|
+
|
|
6862
|
+
@utility w-spacing-brand-large-component-button-radius-medium {
|
|
6863
|
+
width: var(--spacing-brand-large-component-button-radius-medium);
|
|
6864
|
+
}
|
|
6865
|
+
|
|
6866
|
+
@utility h-spacing-brand-large-component-button-radius-medium {
|
|
6867
|
+
height: var(--spacing-brand-large-component-button-radius-medium);
|
|
6868
|
+
}
|
|
6869
|
+
|
|
6870
|
+
@utility gap-spacing-brand-large-component-button-radius-medium {
|
|
6871
|
+
gap: var(--spacing-brand-large-component-button-radius-medium);
|
|
6872
|
+
}
|
|
6873
|
+
|
|
6874
|
+
@utility p-spacing-brand-large-component-button-radius-medium {
|
|
6875
|
+
padding: var(--spacing-brand-large-component-button-radius-medium);
|
|
6876
|
+
}
|
|
6877
|
+
|
|
6878
|
+
@utility px-spacing-brand-large-component-button-radius-medium {
|
|
6879
|
+
padding-left: var(--spacing-brand-large-component-button-radius-medium);
|
|
6880
|
+
padding-right: var(--spacing-brand-large-component-button-radius-medium);
|
|
6881
|
+
}
|
|
6882
|
+
|
|
6883
|
+
@utility py-spacing-brand-large-component-button-radius-medium {
|
|
6884
|
+
padding-top: var(--spacing-brand-large-component-button-radius-medium);
|
|
6885
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-medium);
|
|
6886
|
+
}
|
|
6887
|
+
|
|
6888
|
+
@utility pt-spacing-brand-large-component-button-radius-medium {
|
|
6889
|
+
padding-top: var(--spacing-brand-large-component-button-radius-medium);
|
|
6890
|
+
}
|
|
6891
|
+
|
|
6892
|
+
@utility pr-spacing-brand-large-component-button-radius-medium {
|
|
6893
|
+
padding-right: var(--spacing-brand-large-component-button-radius-medium);
|
|
6894
|
+
}
|
|
6895
|
+
|
|
6896
|
+
@utility pb-spacing-brand-large-component-button-radius-medium {
|
|
6897
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-medium);
|
|
6898
|
+
}
|
|
6899
|
+
|
|
6900
|
+
@utility pl-spacing-brand-large-component-button-radius-medium {
|
|
6901
|
+
padding-left: var(--spacing-brand-large-component-button-radius-medium);
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
@utility m-spacing-brand-large-component-button-radius-medium {
|
|
6905
|
+
margin: var(--spacing-brand-large-component-button-radius-medium);
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6908
|
+
@utility mx-spacing-brand-large-component-button-radius-medium {
|
|
6909
|
+
margin-left: var(--spacing-brand-large-component-button-radius-medium);
|
|
6910
|
+
margin-right: var(--spacing-brand-large-component-button-radius-medium);
|
|
6911
|
+
}
|
|
6912
|
+
|
|
6913
|
+
@utility my-spacing-brand-large-component-button-radius-medium {
|
|
6914
|
+
margin-top: var(--spacing-brand-large-component-button-radius-medium);
|
|
6915
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-medium);
|
|
6916
|
+
}
|
|
6917
|
+
|
|
6918
|
+
@utility mt-spacing-brand-large-component-button-radius-medium {
|
|
6919
|
+
margin-top: var(--spacing-brand-large-component-button-radius-medium);
|
|
6920
|
+
}
|
|
6921
|
+
|
|
6922
|
+
@utility mr-spacing-brand-large-component-button-radius-medium {
|
|
6923
|
+
margin-right: var(--spacing-brand-large-component-button-radius-medium);
|
|
6924
|
+
}
|
|
6925
|
+
|
|
6926
|
+
@utility mb-spacing-brand-large-component-button-radius-medium {
|
|
6927
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-medium);
|
|
6928
|
+
}
|
|
6929
|
+
|
|
6930
|
+
@utility ml-spacing-brand-large-component-button-radius-medium {
|
|
6931
|
+
margin-left: var(--spacing-brand-large-component-button-radius-medium);
|
|
6932
|
+
}
|
|
6933
|
+
|
|
6934
|
+
@utility w-spacing-brand-large-component-button-radius-small {
|
|
6935
|
+
width: var(--spacing-brand-large-component-button-radius-small);
|
|
6936
|
+
}
|
|
6937
|
+
|
|
6938
|
+
@utility h-spacing-brand-large-component-button-radius-small {
|
|
6939
|
+
height: var(--spacing-brand-large-component-button-radius-small);
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6942
|
+
@utility gap-spacing-brand-large-component-button-radius-small {
|
|
6943
|
+
gap: var(--spacing-brand-large-component-button-radius-small);
|
|
6944
|
+
}
|
|
6945
|
+
|
|
6946
|
+
@utility p-spacing-brand-large-component-button-radius-small {
|
|
6947
|
+
padding: var(--spacing-brand-large-component-button-radius-small);
|
|
6948
|
+
}
|
|
6949
|
+
|
|
6950
|
+
@utility px-spacing-brand-large-component-button-radius-small {
|
|
6951
|
+
padding-left: var(--spacing-brand-large-component-button-radius-small);
|
|
6952
|
+
padding-right: var(--spacing-brand-large-component-button-radius-small);
|
|
6953
|
+
}
|
|
6954
|
+
|
|
6955
|
+
@utility py-spacing-brand-large-component-button-radius-small {
|
|
6956
|
+
padding-top: var(--spacing-brand-large-component-button-radius-small);
|
|
6957
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-small);
|
|
6958
|
+
}
|
|
6959
|
+
|
|
6960
|
+
@utility pt-spacing-brand-large-component-button-radius-small {
|
|
6961
|
+
padding-top: var(--spacing-brand-large-component-button-radius-small);
|
|
6962
|
+
}
|
|
6963
|
+
|
|
6964
|
+
@utility pr-spacing-brand-large-component-button-radius-small {
|
|
6965
|
+
padding-right: var(--spacing-brand-large-component-button-radius-small);
|
|
6966
|
+
}
|
|
6967
|
+
|
|
6968
|
+
@utility pb-spacing-brand-large-component-button-radius-small {
|
|
6969
|
+
padding-bottom: var(--spacing-brand-large-component-button-radius-small);
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6972
|
+
@utility pl-spacing-brand-large-component-button-radius-small {
|
|
6973
|
+
padding-left: var(--spacing-brand-large-component-button-radius-small);
|
|
6974
|
+
}
|
|
6975
|
+
|
|
6976
|
+
@utility m-spacing-brand-large-component-button-radius-small {
|
|
6977
|
+
margin: var(--spacing-brand-large-component-button-radius-small);
|
|
6978
|
+
}
|
|
6979
|
+
|
|
6980
|
+
@utility mx-spacing-brand-large-component-button-radius-small {
|
|
6981
|
+
margin-left: var(--spacing-brand-large-component-button-radius-small);
|
|
6982
|
+
margin-right: var(--spacing-brand-large-component-button-radius-small);
|
|
6983
|
+
}
|
|
6984
|
+
|
|
6985
|
+
@utility my-spacing-brand-large-component-button-radius-small {
|
|
6986
|
+
margin-top: var(--spacing-brand-large-component-button-radius-small);
|
|
6987
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-small);
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
@utility mt-spacing-brand-large-component-button-radius-small {
|
|
6991
|
+
margin-top: var(--spacing-brand-large-component-button-radius-small);
|
|
6992
|
+
}
|
|
6993
|
+
|
|
6994
|
+
@utility mr-spacing-brand-large-component-button-radius-small {
|
|
6995
|
+
margin-right: var(--spacing-brand-large-component-button-radius-small);
|
|
6996
|
+
}
|
|
6997
|
+
|
|
6998
|
+
@utility mb-spacing-brand-large-component-button-radius-small {
|
|
6999
|
+
margin-bottom: var(--spacing-brand-large-component-button-radius-small);
|
|
7000
|
+
}
|
|
7001
|
+
|
|
7002
|
+
@utility ml-spacing-brand-large-component-button-radius-small {
|
|
7003
|
+
margin-left: var(--spacing-brand-large-component-button-radius-small);
|
|
7004
|
+
}
|
|
7005
|
+
|
|
6450
7006
|
@utility w-spacing-brand-large-component-card-gap-internal {
|
|
6451
7007
|
width: var(--spacing-brand-large-component-card-gap-internal);
|
|
6452
7008
|
}
|
|
@@ -8391,37 +8947,181 @@
|
|
|
8391
8947
|
margin-left: var(--spacing-brand-large-layout-grid-gap-small);
|
|
8392
8948
|
}
|
|
8393
8949
|
|
|
8394
|
-
@utility w-spacing-brand-large-layout-
|
|
8395
|
-
width: var(--spacing-brand-large-layout-
|
|
8950
|
+
@utility w-spacing-brand-large-layout-grid-gutter {
|
|
8951
|
+
width: var(--spacing-brand-large-layout-grid-gutter);
|
|
8396
8952
|
}
|
|
8397
8953
|
|
|
8398
|
-
@utility h-spacing-brand-large-layout-
|
|
8399
|
-
height: var(--spacing-brand-large-layout-
|
|
8954
|
+
@utility h-spacing-brand-large-layout-grid-gutter {
|
|
8955
|
+
height: var(--spacing-brand-large-layout-grid-gutter);
|
|
8400
8956
|
}
|
|
8401
8957
|
|
|
8402
|
-
@utility gap-spacing-brand-large-layout-
|
|
8403
|
-
gap: var(--spacing-brand-large-layout-
|
|
8958
|
+
@utility gap-spacing-brand-large-layout-grid-gutter {
|
|
8959
|
+
gap: var(--spacing-brand-large-layout-grid-gutter);
|
|
8404
8960
|
}
|
|
8405
8961
|
|
|
8406
|
-
@utility p-spacing-brand-large-layout-
|
|
8407
|
-
padding: var(--spacing-brand-large-layout-
|
|
8962
|
+
@utility p-spacing-brand-large-layout-grid-gutter {
|
|
8963
|
+
padding: var(--spacing-brand-large-layout-grid-gutter);
|
|
8408
8964
|
}
|
|
8409
8965
|
|
|
8410
|
-
@utility px-spacing-brand-large-layout-
|
|
8411
|
-
padding-left: var(--spacing-brand-large-layout-
|
|
8412
|
-
padding-right: var(--spacing-brand-large-layout-
|
|
8966
|
+
@utility px-spacing-brand-large-layout-grid-gutter {
|
|
8967
|
+
padding-left: var(--spacing-brand-large-layout-grid-gutter);
|
|
8968
|
+
padding-right: var(--spacing-brand-large-layout-grid-gutter);
|
|
8413
8969
|
}
|
|
8414
8970
|
|
|
8415
|
-
@utility py-spacing-brand-large-layout-
|
|
8416
|
-
padding-top: var(--spacing-brand-large-layout-
|
|
8417
|
-
padding-bottom: var(--spacing-brand-large-layout-
|
|
8971
|
+
@utility py-spacing-brand-large-layout-grid-gutter {
|
|
8972
|
+
padding-top: var(--spacing-brand-large-layout-grid-gutter);
|
|
8973
|
+
padding-bottom: var(--spacing-brand-large-layout-grid-gutter);
|
|
8418
8974
|
}
|
|
8419
8975
|
|
|
8420
|
-
@utility pt-spacing-brand-large-layout-
|
|
8421
|
-
padding-top: var(--spacing-brand-large-layout-
|
|
8976
|
+
@utility pt-spacing-brand-large-layout-grid-gutter {
|
|
8977
|
+
padding-top: var(--spacing-brand-large-layout-grid-gutter);
|
|
8422
8978
|
}
|
|
8423
8979
|
|
|
8424
|
-
@utility pr-spacing-brand-large-layout-
|
|
8980
|
+
@utility pr-spacing-brand-large-layout-grid-gutter {
|
|
8981
|
+
padding-right: var(--spacing-brand-large-layout-grid-gutter);
|
|
8982
|
+
}
|
|
8983
|
+
|
|
8984
|
+
@utility pb-spacing-brand-large-layout-grid-gutter {
|
|
8985
|
+
padding-bottom: var(--spacing-brand-large-layout-grid-gutter);
|
|
8986
|
+
}
|
|
8987
|
+
|
|
8988
|
+
@utility pl-spacing-brand-large-layout-grid-gutter {
|
|
8989
|
+
padding-left: var(--spacing-brand-large-layout-grid-gutter);
|
|
8990
|
+
}
|
|
8991
|
+
|
|
8992
|
+
@utility m-spacing-brand-large-layout-grid-gutter {
|
|
8993
|
+
margin: var(--spacing-brand-large-layout-grid-gutter);
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8996
|
+
@utility mx-spacing-brand-large-layout-grid-gutter {
|
|
8997
|
+
margin-left: var(--spacing-brand-large-layout-grid-gutter);
|
|
8998
|
+
margin-right: var(--spacing-brand-large-layout-grid-gutter);
|
|
8999
|
+
}
|
|
9000
|
+
|
|
9001
|
+
@utility my-spacing-brand-large-layout-grid-gutter {
|
|
9002
|
+
margin-top: var(--spacing-brand-large-layout-grid-gutter);
|
|
9003
|
+
margin-bottom: var(--spacing-brand-large-layout-grid-gutter);
|
|
9004
|
+
}
|
|
9005
|
+
|
|
9006
|
+
@utility mt-spacing-brand-large-layout-grid-gutter {
|
|
9007
|
+
margin-top: var(--spacing-brand-large-layout-grid-gutter);
|
|
9008
|
+
}
|
|
9009
|
+
|
|
9010
|
+
@utility mr-spacing-brand-large-layout-grid-gutter {
|
|
9011
|
+
margin-right: var(--spacing-brand-large-layout-grid-gutter);
|
|
9012
|
+
}
|
|
9013
|
+
|
|
9014
|
+
@utility mb-spacing-brand-large-layout-grid-gutter {
|
|
9015
|
+
margin-bottom: var(--spacing-brand-large-layout-grid-gutter);
|
|
9016
|
+
}
|
|
9017
|
+
|
|
9018
|
+
@utility ml-spacing-brand-large-layout-grid-gutter {
|
|
9019
|
+
margin-left: var(--spacing-brand-large-layout-grid-gutter);
|
|
9020
|
+
}
|
|
9021
|
+
|
|
9022
|
+
@utility w-spacing-brand-large-layout-grid-margin {
|
|
9023
|
+
width: var(--spacing-brand-large-layout-grid-margin);
|
|
9024
|
+
}
|
|
9025
|
+
|
|
9026
|
+
@utility h-spacing-brand-large-layout-grid-margin {
|
|
9027
|
+
height: var(--spacing-brand-large-layout-grid-margin);
|
|
9028
|
+
}
|
|
9029
|
+
|
|
9030
|
+
@utility gap-spacing-brand-large-layout-grid-margin {
|
|
9031
|
+
gap: var(--spacing-brand-large-layout-grid-margin);
|
|
9032
|
+
}
|
|
9033
|
+
|
|
9034
|
+
@utility p-spacing-brand-large-layout-grid-margin {
|
|
9035
|
+
padding: var(--spacing-brand-large-layout-grid-margin);
|
|
9036
|
+
}
|
|
9037
|
+
|
|
9038
|
+
@utility px-spacing-brand-large-layout-grid-margin {
|
|
9039
|
+
padding-left: var(--spacing-brand-large-layout-grid-margin);
|
|
9040
|
+
padding-right: var(--spacing-brand-large-layout-grid-margin);
|
|
9041
|
+
}
|
|
9042
|
+
|
|
9043
|
+
@utility py-spacing-brand-large-layout-grid-margin {
|
|
9044
|
+
padding-top: var(--spacing-brand-large-layout-grid-margin);
|
|
9045
|
+
padding-bottom: var(--spacing-brand-large-layout-grid-margin);
|
|
9046
|
+
}
|
|
9047
|
+
|
|
9048
|
+
@utility pt-spacing-brand-large-layout-grid-margin {
|
|
9049
|
+
padding-top: var(--spacing-brand-large-layout-grid-margin);
|
|
9050
|
+
}
|
|
9051
|
+
|
|
9052
|
+
@utility pr-spacing-brand-large-layout-grid-margin {
|
|
9053
|
+
padding-right: var(--spacing-brand-large-layout-grid-margin);
|
|
9054
|
+
}
|
|
9055
|
+
|
|
9056
|
+
@utility pb-spacing-brand-large-layout-grid-margin {
|
|
9057
|
+
padding-bottom: var(--spacing-brand-large-layout-grid-margin);
|
|
9058
|
+
}
|
|
9059
|
+
|
|
9060
|
+
@utility pl-spacing-brand-large-layout-grid-margin {
|
|
9061
|
+
padding-left: var(--spacing-brand-large-layout-grid-margin);
|
|
9062
|
+
}
|
|
9063
|
+
|
|
9064
|
+
@utility m-spacing-brand-large-layout-grid-margin {
|
|
9065
|
+
margin: var(--spacing-brand-large-layout-grid-margin);
|
|
9066
|
+
}
|
|
9067
|
+
|
|
9068
|
+
@utility mx-spacing-brand-large-layout-grid-margin {
|
|
9069
|
+
margin-left: var(--spacing-brand-large-layout-grid-margin);
|
|
9070
|
+
margin-right: var(--spacing-brand-large-layout-grid-margin);
|
|
9071
|
+
}
|
|
9072
|
+
|
|
9073
|
+
@utility my-spacing-brand-large-layout-grid-margin {
|
|
9074
|
+
margin-top: var(--spacing-brand-large-layout-grid-margin);
|
|
9075
|
+
margin-bottom: var(--spacing-brand-large-layout-grid-margin);
|
|
9076
|
+
}
|
|
9077
|
+
|
|
9078
|
+
@utility mt-spacing-brand-large-layout-grid-margin {
|
|
9079
|
+
margin-top: var(--spacing-brand-large-layout-grid-margin);
|
|
9080
|
+
}
|
|
9081
|
+
|
|
9082
|
+
@utility mr-spacing-brand-large-layout-grid-margin {
|
|
9083
|
+
margin-right: var(--spacing-brand-large-layout-grid-margin);
|
|
9084
|
+
}
|
|
9085
|
+
|
|
9086
|
+
@utility mb-spacing-brand-large-layout-grid-margin {
|
|
9087
|
+
margin-bottom: var(--spacing-brand-large-layout-grid-margin);
|
|
9088
|
+
}
|
|
9089
|
+
|
|
9090
|
+
@utility ml-spacing-brand-large-layout-grid-margin {
|
|
9091
|
+
margin-left: var(--spacing-brand-large-layout-grid-margin);
|
|
9092
|
+
}
|
|
9093
|
+
|
|
9094
|
+
@utility w-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9095
|
+
width: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9096
|
+
}
|
|
9097
|
+
|
|
9098
|
+
@utility h-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9099
|
+
height: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9100
|
+
}
|
|
9101
|
+
|
|
9102
|
+
@utility gap-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9103
|
+
gap: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9104
|
+
}
|
|
9105
|
+
|
|
9106
|
+
@utility p-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9107
|
+
padding: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9108
|
+
}
|
|
9109
|
+
|
|
9110
|
+
@utility px-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9111
|
+
padding-left: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9112
|
+
padding-right: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9113
|
+
}
|
|
9114
|
+
|
|
9115
|
+
@utility py-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9116
|
+
padding-top: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9117
|
+
padding-bottom: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9118
|
+
}
|
|
9119
|
+
|
|
9120
|
+
@utility pt-spacing-brand-large-layout-hero-gap-content-cta {
|
|
9121
|
+
padding-top: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
9122
|
+
}
|
|
9123
|
+
|
|
9124
|
+
@utility pr-spacing-brand-large-layout-hero-gap-content-cta {
|
|
8425
9125
|
padding-right: var(--spacing-brand-large-layout-hero-gap-content-cta);
|
|
8426
9126
|
}
|
|
8427
9127
|
|
|
@@ -9399,6 +10099,222 @@
|
|
|
9399
10099
|
margin-left: var(--spacing-brand-medium-component-button-gap-icon-text);
|
|
9400
10100
|
}
|
|
9401
10101
|
|
|
10102
|
+
@utility w-spacing-brand-medium-component-button-height-large {
|
|
10103
|
+
width: var(--spacing-brand-medium-component-button-height-large);
|
|
10104
|
+
}
|
|
10105
|
+
|
|
10106
|
+
@utility h-spacing-brand-medium-component-button-height-large {
|
|
10107
|
+
height: var(--spacing-brand-medium-component-button-height-large);
|
|
10108
|
+
}
|
|
10109
|
+
|
|
10110
|
+
@utility gap-spacing-brand-medium-component-button-height-large {
|
|
10111
|
+
gap: var(--spacing-brand-medium-component-button-height-large);
|
|
10112
|
+
}
|
|
10113
|
+
|
|
10114
|
+
@utility p-spacing-brand-medium-component-button-height-large {
|
|
10115
|
+
padding: var(--spacing-brand-medium-component-button-height-large);
|
|
10116
|
+
}
|
|
10117
|
+
|
|
10118
|
+
@utility px-spacing-brand-medium-component-button-height-large {
|
|
10119
|
+
padding-left: var(--spacing-brand-medium-component-button-height-large);
|
|
10120
|
+
padding-right: var(--spacing-brand-medium-component-button-height-large);
|
|
10121
|
+
}
|
|
10122
|
+
|
|
10123
|
+
@utility py-spacing-brand-medium-component-button-height-large {
|
|
10124
|
+
padding-top: var(--spacing-brand-medium-component-button-height-large);
|
|
10125
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-large);
|
|
10126
|
+
}
|
|
10127
|
+
|
|
10128
|
+
@utility pt-spacing-brand-medium-component-button-height-large {
|
|
10129
|
+
padding-top: var(--spacing-brand-medium-component-button-height-large);
|
|
10130
|
+
}
|
|
10131
|
+
|
|
10132
|
+
@utility pr-spacing-brand-medium-component-button-height-large {
|
|
10133
|
+
padding-right: var(--spacing-brand-medium-component-button-height-large);
|
|
10134
|
+
}
|
|
10135
|
+
|
|
10136
|
+
@utility pb-spacing-brand-medium-component-button-height-large {
|
|
10137
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-large);
|
|
10138
|
+
}
|
|
10139
|
+
|
|
10140
|
+
@utility pl-spacing-brand-medium-component-button-height-large {
|
|
10141
|
+
padding-left: var(--spacing-brand-medium-component-button-height-large);
|
|
10142
|
+
}
|
|
10143
|
+
|
|
10144
|
+
@utility m-spacing-brand-medium-component-button-height-large {
|
|
10145
|
+
margin: var(--spacing-brand-medium-component-button-height-large);
|
|
10146
|
+
}
|
|
10147
|
+
|
|
10148
|
+
@utility mx-spacing-brand-medium-component-button-height-large {
|
|
10149
|
+
margin-left: var(--spacing-brand-medium-component-button-height-large);
|
|
10150
|
+
margin-right: var(--spacing-brand-medium-component-button-height-large);
|
|
10151
|
+
}
|
|
10152
|
+
|
|
10153
|
+
@utility my-spacing-brand-medium-component-button-height-large {
|
|
10154
|
+
margin-top: var(--spacing-brand-medium-component-button-height-large);
|
|
10155
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-large);
|
|
10156
|
+
}
|
|
10157
|
+
|
|
10158
|
+
@utility mt-spacing-brand-medium-component-button-height-large {
|
|
10159
|
+
margin-top: var(--spacing-brand-medium-component-button-height-large);
|
|
10160
|
+
}
|
|
10161
|
+
|
|
10162
|
+
@utility mr-spacing-brand-medium-component-button-height-large {
|
|
10163
|
+
margin-right: var(--spacing-brand-medium-component-button-height-large);
|
|
10164
|
+
}
|
|
10165
|
+
|
|
10166
|
+
@utility mb-spacing-brand-medium-component-button-height-large {
|
|
10167
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-large);
|
|
10168
|
+
}
|
|
10169
|
+
|
|
10170
|
+
@utility ml-spacing-brand-medium-component-button-height-large {
|
|
10171
|
+
margin-left: var(--spacing-brand-medium-component-button-height-large);
|
|
10172
|
+
}
|
|
10173
|
+
|
|
10174
|
+
@utility w-spacing-brand-medium-component-button-height-medium {
|
|
10175
|
+
width: var(--spacing-brand-medium-component-button-height-medium);
|
|
10176
|
+
}
|
|
10177
|
+
|
|
10178
|
+
@utility h-spacing-brand-medium-component-button-height-medium {
|
|
10179
|
+
height: var(--spacing-brand-medium-component-button-height-medium);
|
|
10180
|
+
}
|
|
10181
|
+
|
|
10182
|
+
@utility gap-spacing-brand-medium-component-button-height-medium {
|
|
10183
|
+
gap: var(--spacing-brand-medium-component-button-height-medium);
|
|
10184
|
+
}
|
|
10185
|
+
|
|
10186
|
+
@utility p-spacing-brand-medium-component-button-height-medium {
|
|
10187
|
+
padding: var(--spacing-brand-medium-component-button-height-medium);
|
|
10188
|
+
}
|
|
10189
|
+
|
|
10190
|
+
@utility px-spacing-brand-medium-component-button-height-medium {
|
|
10191
|
+
padding-left: var(--spacing-brand-medium-component-button-height-medium);
|
|
10192
|
+
padding-right: var(--spacing-brand-medium-component-button-height-medium);
|
|
10193
|
+
}
|
|
10194
|
+
|
|
10195
|
+
@utility py-spacing-brand-medium-component-button-height-medium {
|
|
10196
|
+
padding-top: var(--spacing-brand-medium-component-button-height-medium);
|
|
10197
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-medium);
|
|
10198
|
+
}
|
|
10199
|
+
|
|
10200
|
+
@utility pt-spacing-brand-medium-component-button-height-medium {
|
|
10201
|
+
padding-top: var(--spacing-brand-medium-component-button-height-medium);
|
|
10202
|
+
}
|
|
10203
|
+
|
|
10204
|
+
@utility pr-spacing-brand-medium-component-button-height-medium {
|
|
10205
|
+
padding-right: var(--spacing-brand-medium-component-button-height-medium);
|
|
10206
|
+
}
|
|
10207
|
+
|
|
10208
|
+
@utility pb-spacing-brand-medium-component-button-height-medium {
|
|
10209
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-medium);
|
|
10210
|
+
}
|
|
10211
|
+
|
|
10212
|
+
@utility pl-spacing-brand-medium-component-button-height-medium {
|
|
10213
|
+
padding-left: var(--spacing-brand-medium-component-button-height-medium);
|
|
10214
|
+
}
|
|
10215
|
+
|
|
10216
|
+
@utility m-spacing-brand-medium-component-button-height-medium {
|
|
10217
|
+
margin: var(--spacing-brand-medium-component-button-height-medium);
|
|
10218
|
+
}
|
|
10219
|
+
|
|
10220
|
+
@utility mx-spacing-brand-medium-component-button-height-medium {
|
|
10221
|
+
margin-left: var(--spacing-brand-medium-component-button-height-medium);
|
|
10222
|
+
margin-right: var(--spacing-brand-medium-component-button-height-medium);
|
|
10223
|
+
}
|
|
10224
|
+
|
|
10225
|
+
@utility my-spacing-brand-medium-component-button-height-medium {
|
|
10226
|
+
margin-top: var(--spacing-brand-medium-component-button-height-medium);
|
|
10227
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-medium);
|
|
10228
|
+
}
|
|
10229
|
+
|
|
10230
|
+
@utility mt-spacing-brand-medium-component-button-height-medium {
|
|
10231
|
+
margin-top: var(--spacing-brand-medium-component-button-height-medium);
|
|
10232
|
+
}
|
|
10233
|
+
|
|
10234
|
+
@utility mr-spacing-brand-medium-component-button-height-medium {
|
|
10235
|
+
margin-right: var(--spacing-brand-medium-component-button-height-medium);
|
|
10236
|
+
}
|
|
10237
|
+
|
|
10238
|
+
@utility mb-spacing-brand-medium-component-button-height-medium {
|
|
10239
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-medium);
|
|
10240
|
+
}
|
|
10241
|
+
|
|
10242
|
+
@utility ml-spacing-brand-medium-component-button-height-medium {
|
|
10243
|
+
margin-left: var(--spacing-brand-medium-component-button-height-medium);
|
|
10244
|
+
}
|
|
10245
|
+
|
|
10246
|
+
@utility w-spacing-brand-medium-component-button-height-small {
|
|
10247
|
+
width: var(--spacing-brand-medium-component-button-height-small);
|
|
10248
|
+
}
|
|
10249
|
+
|
|
10250
|
+
@utility h-spacing-brand-medium-component-button-height-small {
|
|
10251
|
+
height: var(--spacing-brand-medium-component-button-height-small);
|
|
10252
|
+
}
|
|
10253
|
+
|
|
10254
|
+
@utility gap-spacing-brand-medium-component-button-height-small {
|
|
10255
|
+
gap: var(--spacing-brand-medium-component-button-height-small);
|
|
10256
|
+
}
|
|
10257
|
+
|
|
10258
|
+
@utility p-spacing-brand-medium-component-button-height-small {
|
|
10259
|
+
padding: var(--spacing-brand-medium-component-button-height-small);
|
|
10260
|
+
}
|
|
10261
|
+
|
|
10262
|
+
@utility px-spacing-brand-medium-component-button-height-small {
|
|
10263
|
+
padding-left: var(--spacing-brand-medium-component-button-height-small);
|
|
10264
|
+
padding-right: var(--spacing-brand-medium-component-button-height-small);
|
|
10265
|
+
}
|
|
10266
|
+
|
|
10267
|
+
@utility py-spacing-brand-medium-component-button-height-small {
|
|
10268
|
+
padding-top: var(--spacing-brand-medium-component-button-height-small);
|
|
10269
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-small);
|
|
10270
|
+
}
|
|
10271
|
+
|
|
10272
|
+
@utility pt-spacing-brand-medium-component-button-height-small {
|
|
10273
|
+
padding-top: var(--spacing-brand-medium-component-button-height-small);
|
|
10274
|
+
}
|
|
10275
|
+
|
|
10276
|
+
@utility pr-spacing-brand-medium-component-button-height-small {
|
|
10277
|
+
padding-right: var(--spacing-brand-medium-component-button-height-small);
|
|
10278
|
+
}
|
|
10279
|
+
|
|
10280
|
+
@utility pb-spacing-brand-medium-component-button-height-small {
|
|
10281
|
+
padding-bottom: var(--spacing-brand-medium-component-button-height-small);
|
|
10282
|
+
}
|
|
10283
|
+
|
|
10284
|
+
@utility pl-spacing-brand-medium-component-button-height-small {
|
|
10285
|
+
padding-left: var(--spacing-brand-medium-component-button-height-small);
|
|
10286
|
+
}
|
|
10287
|
+
|
|
10288
|
+
@utility m-spacing-brand-medium-component-button-height-small {
|
|
10289
|
+
margin: var(--spacing-brand-medium-component-button-height-small);
|
|
10290
|
+
}
|
|
10291
|
+
|
|
10292
|
+
@utility mx-spacing-brand-medium-component-button-height-small {
|
|
10293
|
+
margin-left: var(--spacing-brand-medium-component-button-height-small);
|
|
10294
|
+
margin-right: var(--spacing-brand-medium-component-button-height-small);
|
|
10295
|
+
}
|
|
10296
|
+
|
|
10297
|
+
@utility my-spacing-brand-medium-component-button-height-small {
|
|
10298
|
+
margin-top: var(--spacing-brand-medium-component-button-height-small);
|
|
10299
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-small);
|
|
10300
|
+
}
|
|
10301
|
+
|
|
10302
|
+
@utility mt-spacing-brand-medium-component-button-height-small {
|
|
10303
|
+
margin-top: var(--spacing-brand-medium-component-button-height-small);
|
|
10304
|
+
}
|
|
10305
|
+
|
|
10306
|
+
@utility mr-spacing-brand-medium-component-button-height-small {
|
|
10307
|
+
margin-right: var(--spacing-brand-medium-component-button-height-small);
|
|
10308
|
+
}
|
|
10309
|
+
|
|
10310
|
+
@utility mb-spacing-brand-medium-component-button-height-small {
|
|
10311
|
+
margin-bottom: var(--spacing-brand-medium-component-button-height-small);
|
|
10312
|
+
}
|
|
10313
|
+
|
|
10314
|
+
@utility ml-spacing-brand-medium-component-button-height-small {
|
|
10315
|
+
margin-left: var(--spacing-brand-medium-component-button-height-small);
|
|
10316
|
+
}
|
|
10317
|
+
|
|
9402
10318
|
@utility w-spacing-brand-medium-component-button-padding-x-large {
|
|
9403
10319
|
width: var(--spacing-brand-medium-component-button-padding-x-large);
|
|
9404
10320
|
}
|
|
@@ -9780,55 +10696,271 @@
|
|
|
9780
10696
|
padding-right: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
9781
10697
|
}
|
|
9782
10698
|
|
|
9783
|
-
@utility py-spacing-brand-medium-component-button-padding-y-small {
|
|
9784
|
-
padding-top: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
9785
|
-
padding-bottom: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10699
|
+
@utility py-spacing-brand-medium-component-button-padding-y-small {
|
|
10700
|
+
padding-top: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10701
|
+
padding-bottom: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10702
|
+
}
|
|
10703
|
+
|
|
10704
|
+
@utility pt-spacing-brand-medium-component-button-padding-y-small {
|
|
10705
|
+
padding-top: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10706
|
+
}
|
|
10707
|
+
|
|
10708
|
+
@utility pr-spacing-brand-medium-component-button-padding-y-small {
|
|
10709
|
+
padding-right: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10710
|
+
}
|
|
10711
|
+
|
|
10712
|
+
@utility pb-spacing-brand-medium-component-button-padding-y-small {
|
|
10713
|
+
padding-bottom: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10714
|
+
}
|
|
10715
|
+
|
|
10716
|
+
@utility pl-spacing-brand-medium-component-button-padding-y-small {
|
|
10717
|
+
padding-left: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10718
|
+
}
|
|
10719
|
+
|
|
10720
|
+
@utility m-spacing-brand-medium-component-button-padding-y-small {
|
|
10721
|
+
margin: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10722
|
+
}
|
|
10723
|
+
|
|
10724
|
+
@utility mx-spacing-brand-medium-component-button-padding-y-small {
|
|
10725
|
+
margin-left: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10726
|
+
margin-right: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10727
|
+
}
|
|
10728
|
+
|
|
10729
|
+
@utility my-spacing-brand-medium-component-button-padding-y-small {
|
|
10730
|
+
margin-top: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10731
|
+
margin-bottom: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10732
|
+
}
|
|
10733
|
+
|
|
10734
|
+
@utility mt-spacing-brand-medium-component-button-padding-y-small {
|
|
10735
|
+
margin-top: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10736
|
+
}
|
|
10737
|
+
|
|
10738
|
+
@utility mr-spacing-brand-medium-component-button-padding-y-small {
|
|
10739
|
+
margin-right: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10740
|
+
}
|
|
10741
|
+
|
|
10742
|
+
@utility mb-spacing-brand-medium-component-button-padding-y-small {
|
|
10743
|
+
margin-bottom: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10746
|
+
@utility ml-spacing-brand-medium-component-button-padding-y-small {
|
|
10747
|
+
margin-left: var(--spacing-brand-medium-component-button-padding-y-small);
|
|
10748
|
+
}
|
|
10749
|
+
|
|
10750
|
+
@utility w-spacing-brand-medium-component-button-radius-large {
|
|
10751
|
+
width: var(--spacing-brand-medium-component-button-radius-large);
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10754
|
+
@utility h-spacing-brand-medium-component-button-radius-large {
|
|
10755
|
+
height: var(--spacing-brand-medium-component-button-radius-large);
|
|
10756
|
+
}
|
|
10757
|
+
|
|
10758
|
+
@utility gap-spacing-brand-medium-component-button-radius-large {
|
|
10759
|
+
gap: var(--spacing-brand-medium-component-button-radius-large);
|
|
10760
|
+
}
|
|
10761
|
+
|
|
10762
|
+
@utility p-spacing-brand-medium-component-button-radius-large {
|
|
10763
|
+
padding: var(--spacing-brand-medium-component-button-radius-large);
|
|
10764
|
+
}
|
|
10765
|
+
|
|
10766
|
+
@utility px-spacing-brand-medium-component-button-radius-large {
|
|
10767
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-large);
|
|
10768
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-large);
|
|
10769
|
+
}
|
|
10770
|
+
|
|
10771
|
+
@utility py-spacing-brand-medium-component-button-radius-large {
|
|
10772
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-large);
|
|
10773
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-large);
|
|
10774
|
+
}
|
|
10775
|
+
|
|
10776
|
+
@utility pt-spacing-brand-medium-component-button-radius-large {
|
|
10777
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-large);
|
|
10778
|
+
}
|
|
10779
|
+
|
|
10780
|
+
@utility pr-spacing-brand-medium-component-button-radius-large {
|
|
10781
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-large);
|
|
10782
|
+
}
|
|
10783
|
+
|
|
10784
|
+
@utility pb-spacing-brand-medium-component-button-radius-large {
|
|
10785
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-large);
|
|
10786
|
+
}
|
|
10787
|
+
|
|
10788
|
+
@utility pl-spacing-brand-medium-component-button-radius-large {
|
|
10789
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-large);
|
|
10790
|
+
}
|
|
10791
|
+
|
|
10792
|
+
@utility m-spacing-brand-medium-component-button-radius-large {
|
|
10793
|
+
margin: var(--spacing-brand-medium-component-button-radius-large);
|
|
10794
|
+
}
|
|
10795
|
+
|
|
10796
|
+
@utility mx-spacing-brand-medium-component-button-radius-large {
|
|
10797
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-large);
|
|
10798
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-large);
|
|
10799
|
+
}
|
|
10800
|
+
|
|
10801
|
+
@utility my-spacing-brand-medium-component-button-radius-large {
|
|
10802
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-large);
|
|
10803
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-large);
|
|
10804
|
+
}
|
|
10805
|
+
|
|
10806
|
+
@utility mt-spacing-brand-medium-component-button-radius-large {
|
|
10807
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-large);
|
|
10808
|
+
}
|
|
10809
|
+
|
|
10810
|
+
@utility mr-spacing-brand-medium-component-button-radius-large {
|
|
10811
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-large);
|
|
10812
|
+
}
|
|
10813
|
+
|
|
10814
|
+
@utility mb-spacing-brand-medium-component-button-radius-large {
|
|
10815
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-large);
|
|
10816
|
+
}
|
|
10817
|
+
|
|
10818
|
+
@utility ml-spacing-brand-medium-component-button-radius-large {
|
|
10819
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-large);
|
|
10820
|
+
}
|
|
10821
|
+
|
|
10822
|
+
@utility w-spacing-brand-medium-component-button-radius-medium {
|
|
10823
|
+
width: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10824
|
+
}
|
|
10825
|
+
|
|
10826
|
+
@utility h-spacing-brand-medium-component-button-radius-medium {
|
|
10827
|
+
height: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10828
|
+
}
|
|
10829
|
+
|
|
10830
|
+
@utility gap-spacing-brand-medium-component-button-radius-medium {
|
|
10831
|
+
gap: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10832
|
+
}
|
|
10833
|
+
|
|
10834
|
+
@utility p-spacing-brand-medium-component-button-radius-medium {
|
|
10835
|
+
padding: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10836
|
+
}
|
|
10837
|
+
|
|
10838
|
+
@utility px-spacing-brand-medium-component-button-radius-medium {
|
|
10839
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10840
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10841
|
+
}
|
|
10842
|
+
|
|
10843
|
+
@utility py-spacing-brand-medium-component-button-radius-medium {
|
|
10844
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10845
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10846
|
+
}
|
|
10847
|
+
|
|
10848
|
+
@utility pt-spacing-brand-medium-component-button-radius-medium {
|
|
10849
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10850
|
+
}
|
|
10851
|
+
|
|
10852
|
+
@utility pr-spacing-brand-medium-component-button-radius-medium {
|
|
10853
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10854
|
+
}
|
|
10855
|
+
|
|
10856
|
+
@utility pb-spacing-brand-medium-component-button-radius-medium {
|
|
10857
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10858
|
+
}
|
|
10859
|
+
|
|
10860
|
+
@utility pl-spacing-brand-medium-component-button-radius-medium {
|
|
10861
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10862
|
+
}
|
|
10863
|
+
|
|
10864
|
+
@utility m-spacing-brand-medium-component-button-radius-medium {
|
|
10865
|
+
margin: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10866
|
+
}
|
|
10867
|
+
|
|
10868
|
+
@utility mx-spacing-brand-medium-component-button-radius-medium {
|
|
10869
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10870
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10871
|
+
}
|
|
10872
|
+
|
|
10873
|
+
@utility my-spacing-brand-medium-component-button-radius-medium {
|
|
10874
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10875
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10876
|
+
}
|
|
10877
|
+
|
|
10878
|
+
@utility mt-spacing-brand-medium-component-button-radius-medium {
|
|
10879
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10880
|
+
}
|
|
10881
|
+
|
|
10882
|
+
@utility mr-spacing-brand-medium-component-button-radius-medium {
|
|
10883
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10884
|
+
}
|
|
10885
|
+
|
|
10886
|
+
@utility mb-spacing-brand-medium-component-button-radius-medium {
|
|
10887
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10888
|
+
}
|
|
10889
|
+
|
|
10890
|
+
@utility ml-spacing-brand-medium-component-button-radius-medium {
|
|
10891
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-medium);
|
|
10892
|
+
}
|
|
10893
|
+
|
|
10894
|
+
@utility w-spacing-brand-medium-component-button-radius-small {
|
|
10895
|
+
width: var(--spacing-brand-medium-component-button-radius-small);
|
|
10896
|
+
}
|
|
10897
|
+
|
|
10898
|
+
@utility h-spacing-brand-medium-component-button-radius-small {
|
|
10899
|
+
height: var(--spacing-brand-medium-component-button-radius-small);
|
|
10900
|
+
}
|
|
10901
|
+
|
|
10902
|
+
@utility gap-spacing-brand-medium-component-button-radius-small {
|
|
10903
|
+
gap: var(--spacing-brand-medium-component-button-radius-small);
|
|
10904
|
+
}
|
|
10905
|
+
|
|
10906
|
+
@utility p-spacing-brand-medium-component-button-radius-small {
|
|
10907
|
+
padding: var(--spacing-brand-medium-component-button-radius-small);
|
|
10908
|
+
}
|
|
10909
|
+
|
|
10910
|
+
@utility px-spacing-brand-medium-component-button-radius-small {
|
|
10911
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-small);
|
|
10912
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-small);
|
|
10913
|
+
}
|
|
10914
|
+
|
|
10915
|
+
@utility py-spacing-brand-medium-component-button-radius-small {
|
|
10916
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-small);
|
|
10917
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-small);
|
|
9786
10918
|
}
|
|
9787
10919
|
|
|
9788
|
-
@utility pt-spacing-brand-medium-component-button-
|
|
9789
|
-
padding-top: var(--spacing-brand-medium-component-button-
|
|
10920
|
+
@utility pt-spacing-brand-medium-component-button-radius-small {
|
|
10921
|
+
padding-top: var(--spacing-brand-medium-component-button-radius-small);
|
|
9790
10922
|
}
|
|
9791
10923
|
|
|
9792
|
-
@utility pr-spacing-brand-medium-component-button-
|
|
9793
|
-
padding-right: var(--spacing-brand-medium-component-button-
|
|
10924
|
+
@utility pr-spacing-brand-medium-component-button-radius-small {
|
|
10925
|
+
padding-right: var(--spacing-brand-medium-component-button-radius-small);
|
|
9794
10926
|
}
|
|
9795
10927
|
|
|
9796
|
-
@utility pb-spacing-brand-medium-component-button-
|
|
9797
|
-
padding-bottom: var(--spacing-brand-medium-component-button-
|
|
10928
|
+
@utility pb-spacing-brand-medium-component-button-radius-small {
|
|
10929
|
+
padding-bottom: var(--spacing-brand-medium-component-button-radius-small);
|
|
9798
10930
|
}
|
|
9799
10931
|
|
|
9800
|
-
@utility pl-spacing-brand-medium-component-button-
|
|
9801
|
-
padding-left: var(--spacing-brand-medium-component-button-
|
|
10932
|
+
@utility pl-spacing-brand-medium-component-button-radius-small {
|
|
10933
|
+
padding-left: var(--spacing-brand-medium-component-button-radius-small);
|
|
9802
10934
|
}
|
|
9803
10935
|
|
|
9804
|
-
@utility m-spacing-brand-medium-component-button-
|
|
9805
|
-
margin: var(--spacing-brand-medium-component-button-
|
|
10936
|
+
@utility m-spacing-brand-medium-component-button-radius-small {
|
|
10937
|
+
margin: var(--spacing-brand-medium-component-button-radius-small);
|
|
9806
10938
|
}
|
|
9807
10939
|
|
|
9808
|
-
@utility mx-spacing-brand-medium-component-button-
|
|
9809
|
-
margin-left: var(--spacing-brand-medium-component-button-
|
|
9810
|
-
margin-right: var(--spacing-brand-medium-component-button-
|
|
10940
|
+
@utility mx-spacing-brand-medium-component-button-radius-small {
|
|
10941
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-small);
|
|
10942
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-small);
|
|
9811
10943
|
}
|
|
9812
10944
|
|
|
9813
|
-
@utility my-spacing-brand-medium-component-button-
|
|
9814
|
-
margin-top: var(--spacing-brand-medium-component-button-
|
|
9815
|
-
margin-bottom: var(--spacing-brand-medium-component-button-
|
|
10945
|
+
@utility my-spacing-brand-medium-component-button-radius-small {
|
|
10946
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-small);
|
|
10947
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-small);
|
|
9816
10948
|
}
|
|
9817
10949
|
|
|
9818
|
-
@utility mt-spacing-brand-medium-component-button-
|
|
9819
|
-
margin-top: var(--spacing-brand-medium-component-button-
|
|
10950
|
+
@utility mt-spacing-brand-medium-component-button-radius-small {
|
|
10951
|
+
margin-top: var(--spacing-brand-medium-component-button-radius-small);
|
|
9820
10952
|
}
|
|
9821
10953
|
|
|
9822
|
-
@utility mr-spacing-brand-medium-component-button-
|
|
9823
|
-
margin-right: var(--spacing-brand-medium-component-button-
|
|
10954
|
+
@utility mr-spacing-brand-medium-component-button-radius-small {
|
|
10955
|
+
margin-right: var(--spacing-brand-medium-component-button-radius-small);
|
|
9824
10956
|
}
|
|
9825
10957
|
|
|
9826
|
-
@utility mb-spacing-brand-medium-component-button-
|
|
9827
|
-
margin-bottom: var(--spacing-brand-medium-component-button-
|
|
10958
|
+
@utility mb-spacing-brand-medium-component-button-radius-small {
|
|
10959
|
+
margin-bottom: var(--spacing-brand-medium-component-button-radius-small);
|
|
9828
10960
|
}
|
|
9829
10961
|
|
|
9830
|
-
@utility ml-spacing-brand-medium-component-button-
|
|
9831
|
-
margin-left: var(--spacing-brand-medium-component-button-
|
|
10962
|
+
@utility ml-spacing-brand-medium-component-button-radius-small {
|
|
10963
|
+
margin-left: var(--spacing-brand-medium-component-button-radius-small);
|
|
9832
10964
|
}
|
|
9833
10965
|
|
|
9834
10966
|
@utility w-spacing-brand-medium-component-card-gap-internal {
|
|
@@ -11775,6 +12907,150 @@
|
|
|
11775
12907
|
margin-left: var(--spacing-brand-medium-layout-grid-gap-small);
|
|
11776
12908
|
}
|
|
11777
12909
|
|
|
12910
|
+
@utility w-spacing-brand-medium-layout-grid-gutter {
|
|
12911
|
+
width: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12912
|
+
}
|
|
12913
|
+
|
|
12914
|
+
@utility h-spacing-brand-medium-layout-grid-gutter {
|
|
12915
|
+
height: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12916
|
+
}
|
|
12917
|
+
|
|
12918
|
+
@utility gap-spacing-brand-medium-layout-grid-gutter {
|
|
12919
|
+
gap: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12920
|
+
}
|
|
12921
|
+
|
|
12922
|
+
@utility p-spacing-brand-medium-layout-grid-gutter {
|
|
12923
|
+
padding: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12924
|
+
}
|
|
12925
|
+
|
|
12926
|
+
@utility px-spacing-brand-medium-layout-grid-gutter {
|
|
12927
|
+
padding-left: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12928
|
+
padding-right: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12929
|
+
}
|
|
12930
|
+
|
|
12931
|
+
@utility py-spacing-brand-medium-layout-grid-gutter {
|
|
12932
|
+
padding-top: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12933
|
+
padding-bottom: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12934
|
+
}
|
|
12935
|
+
|
|
12936
|
+
@utility pt-spacing-brand-medium-layout-grid-gutter {
|
|
12937
|
+
padding-top: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12938
|
+
}
|
|
12939
|
+
|
|
12940
|
+
@utility pr-spacing-brand-medium-layout-grid-gutter {
|
|
12941
|
+
padding-right: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12942
|
+
}
|
|
12943
|
+
|
|
12944
|
+
@utility pb-spacing-brand-medium-layout-grid-gutter {
|
|
12945
|
+
padding-bottom: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12946
|
+
}
|
|
12947
|
+
|
|
12948
|
+
@utility pl-spacing-brand-medium-layout-grid-gutter {
|
|
12949
|
+
padding-left: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12950
|
+
}
|
|
12951
|
+
|
|
12952
|
+
@utility m-spacing-brand-medium-layout-grid-gutter {
|
|
12953
|
+
margin: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12954
|
+
}
|
|
12955
|
+
|
|
12956
|
+
@utility mx-spacing-brand-medium-layout-grid-gutter {
|
|
12957
|
+
margin-left: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12958
|
+
margin-right: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12959
|
+
}
|
|
12960
|
+
|
|
12961
|
+
@utility my-spacing-brand-medium-layout-grid-gutter {
|
|
12962
|
+
margin-top: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12963
|
+
margin-bottom: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12964
|
+
}
|
|
12965
|
+
|
|
12966
|
+
@utility mt-spacing-brand-medium-layout-grid-gutter {
|
|
12967
|
+
margin-top: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12968
|
+
}
|
|
12969
|
+
|
|
12970
|
+
@utility mr-spacing-brand-medium-layout-grid-gutter {
|
|
12971
|
+
margin-right: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12972
|
+
}
|
|
12973
|
+
|
|
12974
|
+
@utility mb-spacing-brand-medium-layout-grid-gutter {
|
|
12975
|
+
margin-bottom: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12976
|
+
}
|
|
12977
|
+
|
|
12978
|
+
@utility ml-spacing-brand-medium-layout-grid-gutter {
|
|
12979
|
+
margin-left: var(--spacing-brand-medium-layout-grid-gutter);
|
|
12980
|
+
}
|
|
12981
|
+
|
|
12982
|
+
@utility w-spacing-brand-medium-layout-grid-margin {
|
|
12983
|
+
width: var(--spacing-brand-medium-layout-grid-margin);
|
|
12984
|
+
}
|
|
12985
|
+
|
|
12986
|
+
@utility h-spacing-brand-medium-layout-grid-margin {
|
|
12987
|
+
height: var(--spacing-brand-medium-layout-grid-margin);
|
|
12988
|
+
}
|
|
12989
|
+
|
|
12990
|
+
@utility gap-spacing-brand-medium-layout-grid-margin {
|
|
12991
|
+
gap: var(--spacing-brand-medium-layout-grid-margin);
|
|
12992
|
+
}
|
|
12993
|
+
|
|
12994
|
+
@utility p-spacing-brand-medium-layout-grid-margin {
|
|
12995
|
+
padding: var(--spacing-brand-medium-layout-grid-margin);
|
|
12996
|
+
}
|
|
12997
|
+
|
|
12998
|
+
@utility px-spacing-brand-medium-layout-grid-margin {
|
|
12999
|
+
padding-left: var(--spacing-brand-medium-layout-grid-margin);
|
|
13000
|
+
padding-right: var(--spacing-brand-medium-layout-grid-margin);
|
|
13001
|
+
}
|
|
13002
|
+
|
|
13003
|
+
@utility py-spacing-brand-medium-layout-grid-margin {
|
|
13004
|
+
padding-top: var(--spacing-brand-medium-layout-grid-margin);
|
|
13005
|
+
padding-bottom: var(--spacing-brand-medium-layout-grid-margin);
|
|
13006
|
+
}
|
|
13007
|
+
|
|
13008
|
+
@utility pt-spacing-brand-medium-layout-grid-margin {
|
|
13009
|
+
padding-top: var(--spacing-brand-medium-layout-grid-margin);
|
|
13010
|
+
}
|
|
13011
|
+
|
|
13012
|
+
@utility pr-spacing-brand-medium-layout-grid-margin {
|
|
13013
|
+
padding-right: var(--spacing-brand-medium-layout-grid-margin);
|
|
13014
|
+
}
|
|
13015
|
+
|
|
13016
|
+
@utility pb-spacing-brand-medium-layout-grid-margin {
|
|
13017
|
+
padding-bottom: var(--spacing-brand-medium-layout-grid-margin);
|
|
13018
|
+
}
|
|
13019
|
+
|
|
13020
|
+
@utility pl-spacing-brand-medium-layout-grid-margin {
|
|
13021
|
+
padding-left: var(--spacing-brand-medium-layout-grid-margin);
|
|
13022
|
+
}
|
|
13023
|
+
|
|
13024
|
+
@utility m-spacing-brand-medium-layout-grid-margin {
|
|
13025
|
+
margin: var(--spacing-brand-medium-layout-grid-margin);
|
|
13026
|
+
}
|
|
13027
|
+
|
|
13028
|
+
@utility mx-spacing-brand-medium-layout-grid-margin {
|
|
13029
|
+
margin-left: var(--spacing-brand-medium-layout-grid-margin);
|
|
13030
|
+
margin-right: var(--spacing-brand-medium-layout-grid-margin);
|
|
13031
|
+
}
|
|
13032
|
+
|
|
13033
|
+
@utility my-spacing-brand-medium-layout-grid-margin {
|
|
13034
|
+
margin-top: var(--spacing-brand-medium-layout-grid-margin);
|
|
13035
|
+
margin-bottom: var(--spacing-brand-medium-layout-grid-margin);
|
|
13036
|
+
}
|
|
13037
|
+
|
|
13038
|
+
@utility mt-spacing-brand-medium-layout-grid-margin {
|
|
13039
|
+
margin-top: var(--spacing-brand-medium-layout-grid-margin);
|
|
13040
|
+
}
|
|
13041
|
+
|
|
13042
|
+
@utility mr-spacing-brand-medium-layout-grid-margin {
|
|
13043
|
+
margin-right: var(--spacing-brand-medium-layout-grid-margin);
|
|
13044
|
+
}
|
|
13045
|
+
|
|
13046
|
+
@utility mb-spacing-brand-medium-layout-grid-margin {
|
|
13047
|
+
margin-bottom: var(--spacing-brand-medium-layout-grid-margin);
|
|
13048
|
+
}
|
|
13049
|
+
|
|
13050
|
+
@utility ml-spacing-brand-medium-layout-grid-margin {
|
|
13051
|
+
margin-left: var(--spacing-brand-medium-layout-grid-margin);
|
|
13052
|
+
}
|
|
13053
|
+
|
|
11778
13054
|
@utility w-spacing-brand-medium-layout-hero-gap-content-cta {
|
|
11779
13055
|
width: var(--spacing-brand-medium-layout-hero-gap-content-cta);
|
|
11780
13056
|
}
|
|
@@ -12673,114 +13949,330 @@
|
|
|
12673
13949
|
padding-right: var(--spacing-brand-small-component-button-gap-button-group);
|
|
12674
13950
|
}
|
|
12675
13951
|
|
|
12676
|
-
@utility pb-spacing-brand-small-component-button-gap-button-group {
|
|
12677
|
-
padding-bottom: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13952
|
+
@utility pb-spacing-brand-small-component-button-gap-button-group {
|
|
13953
|
+
padding-bottom: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13954
|
+
}
|
|
13955
|
+
|
|
13956
|
+
@utility pl-spacing-brand-small-component-button-gap-button-group {
|
|
13957
|
+
padding-left: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13958
|
+
}
|
|
13959
|
+
|
|
13960
|
+
@utility m-spacing-brand-small-component-button-gap-button-group {
|
|
13961
|
+
margin: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13962
|
+
}
|
|
13963
|
+
|
|
13964
|
+
@utility mx-spacing-brand-small-component-button-gap-button-group {
|
|
13965
|
+
margin-left: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13966
|
+
margin-right: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13967
|
+
}
|
|
13968
|
+
|
|
13969
|
+
@utility my-spacing-brand-small-component-button-gap-button-group {
|
|
13970
|
+
margin-top: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13971
|
+
margin-bottom: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13972
|
+
}
|
|
13973
|
+
|
|
13974
|
+
@utility mt-spacing-brand-small-component-button-gap-button-group {
|
|
13975
|
+
margin-top: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13976
|
+
}
|
|
13977
|
+
|
|
13978
|
+
@utility mr-spacing-brand-small-component-button-gap-button-group {
|
|
13979
|
+
margin-right: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13980
|
+
}
|
|
13981
|
+
|
|
13982
|
+
@utility mb-spacing-brand-small-component-button-gap-button-group {
|
|
13983
|
+
margin-bottom: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
@utility ml-spacing-brand-small-component-button-gap-button-group {
|
|
13987
|
+
margin-left: var(--spacing-brand-small-component-button-gap-button-group);
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13990
|
+
@utility w-spacing-brand-small-component-button-gap-icon-text {
|
|
13991
|
+
width: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13994
|
+
@utility h-spacing-brand-small-component-button-gap-icon-text {
|
|
13995
|
+
height: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
13996
|
+
}
|
|
13997
|
+
|
|
13998
|
+
@utility gap-spacing-brand-small-component-button-gap-icon-text {
|
|
13999
|
+
gap: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14000
|
+
}
|
|
14001
|
+
|
|
14002
|
+
@utility p-spacing-brand-small-component-button-gap-icon-text {
|
|
14003
|
+
padding: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14004
|
+
}
|
|
14005
|
+
|
|
14006
|
+
@utility px-spacing-brand-small-component-button-gap-icon-text {
|
|
14007
|
+
padding-left: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14008
|
+
padding-right: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14009
|
+
}
|
|
14010
|
+
|
|
14011
|
+
@utility py-spacing-brand-small-component-button-gap-icon-text {
|
|
14012
|
+
padding-top: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14013
|
+
padding-bottom: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14014
|
+
}
|
|
14015
|
+
|
|
14016
|
+
@utility pt-spacing-brand-small-component-button-gap-icon-text {
|
|
14017
|
+
padding-top: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14018
|
+
}
|
|
14019
|
+
|
|
14020
|
+
@utility pr-spacing-brand-small-component-button-gap-icon-text {
|
|
14021
|
+
padding-right: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14022
|
+
}
|
|
14023
|
+
|
|
14024
|
+
@utility pb-spacing-brand-small-component-button-gap-icon-text {
|
|
14025
|
+
padding-bottom: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14026
|
+
}
|
|
14027
|
+
|
|
14028
|
+
@utility pl-spacing-brand-small-component-button-gap-icon-text {
|
|
14029
|
+
padding-left: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14030
|
+
}
|
|
14031
|
+
|
|
14032
|
+
@utility m-spacing-brand-small-component-button-gap-icon-text {
|
|
14033
|
+
margin: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14034
|
+
}
|
|
14035
|
+
|
|
14036
|
+
@utility mx-spacing-brand-small-component-button-gap-icon-text {
|
|
14037
|
+
margin-left: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14038
|
+
margin-right: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14039
|
+
}
|
|
14040
|
+
|
|
14041
|
+
@utility my-spacing-brand-small-component-button-gap-icon-text {
|
|
14042
|
+
margin-top: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14043
|
+
margin-bottom: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14044
|
+
}
|
|
14045
|
+
|
|
14046
|
+
@utility mt-spacing-brand-small-component-button-gap-icon-text {
|
|
14047
|
+
margin-top: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14048
|
+
}
|
|
14049
|
+
|
|
14050
|
+
@utility mr-spacing-brand-small-component-button-gap-icon-text {
|
|
14051
|
+
margin-right: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14052
|
+
}
|
|
14053
|
+
|
|
14054
|
+
@utility mb-spacing-brand-small-component-button-gap-icon-text {
|
|
14055
|
+
margin-bottom: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14056
|
+
}
|
|
14057
|
+
|
|
14058
|
+
@utility ml-spacing-brand-small-component-button-gap-icon-text {
|
|
14059
|
+
margin-left: var(--spacing-brand-small-component-button-gap-icon-text);
|
|
14060
|
+
}
|
|
14061
|
+
|
|
14062
|
+
@utility w-spacing-brand-small-component-button-height-large {
|
|
14063
|
+
width: var(--spacing-brand-small-component-button-height-large);
|
|
14064
|
+
}
|
|
14065
|
+
|
|
14066
|
+
@utility h-spacing-brand-small-component-button-height-large {
|
|
14067
|
+
height: var(--spacing-brand-small-component-button-height-large);
|
|
14068
|
+
}
|
|
14069
|
+
|
|
14070
|
+
@utility gap-spacing-brand-small-component-button-height-large {
|
|
14071
|
+
gap: var(--spacing-brand-small-component-button-height-large);
|
|
14072
|
+
}
|
|
14073
|
+
|
|
14074
|
+
@utility p-spacing-brand-small-component-button-height-large {
|
|
14075
|
+
padding: var(--spacing-brand-small-component-button-height-large);
|
|
14076
|
+
}
|
|
14077
|
+
|
|
14078
|
+
@utility px-spacing-brand-small-component-button-height-large {
|
|
14079
|
+
padding-left: var(--spacing-brand-small-component-button-height-large);
|
|
14080
|
+
padding-right: var(--spacing-brand-small-component-button-height-large);
|
|
14081
|
+
}
|
|
14082
|
+
|
|
14083
|
+
@utility py-spacing-brand-small-component-button-height-large {
|
|
14084
|
+
padding-top: var(--spacing-brand-small-component-button-height-large);
|
|
14085
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-large);
|
|
14086
|
+
}
|
|
14087
|
+
|
|
14088
|
+
@utility pt-spacing-brand-small-component-button-height-large {
|
|
14089
|
+
padding-top: var(--spacing-brand-small-component-button-height-large);
|
|
14090
|
+
}
|
|
14091
|
+
|
|
14092
|
+
@utility pr-spacing-brand-small-component-button-height-large {
|
|
14093
|
+
padding-right: var(--spacing-brand-small-component-button-height-large);
|
|
14094
|
+
}
|
|
14095
|
+
|
|
14096
|
+
@utility pb-spacing-brand-small-component-button-height-large {
|
|
14097
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-large);
|
|
14098
|
+
}
|
|
14099
|
+
|
|
14100
|
+
@utility pl-spacing-brand-small-component-button-height-large {
|
|
14101
|
+
padding-left: var(--spacing-brand-small-component-button-height-large);
|
|
14102
|
+
}
|
|
14103
|
+
|
|
14104
|
+
@utility m-spacing-brand-small-component-button-height-large {
|
|
14105
|
+
margin: var(--spacing-brand-small-component-button-height-large);
|
|
14106
|
+
}
|
|
14107
|
+
|
|
14108
|
+
@utility mx-spacing-brand-small-component-button-height-large {
|
|
14109
|
+
margin-left: var(--spacing-brand-small-component-button-height-large);
|
|
14110
|
+
margin-right: var(--spacing-brand-small-component-button-height-large);
|
|
14111
|
+
}
|
|
14112
|
+
|
|
14113
|
+
@utility my-spacing-brand-small-component-button-height-large {
|
|
14114
|
+
margin-top: var(--spacing-brand-small-component-button-height-large);
|
|
14115
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-large);
|
|
14116
|
+
}
|
|
14117
|
+
|
|
14118
|
+
@utility mt-spacing-brand-small-component-button-height-large {
|
|
14119
|
+
margin-top: var(--spacing-brand-small-component-button-height-large);
|
|
14120
|
+
}
|
|
14121
|
+
|
|
14122
|
+
@utility mr-spacing-brand-small-component-button-height-large {
|
|
14123
|
+
margin-right: var(--spacing-brand-small-component-button-height-large);
|
|
14124
|
+
}
|
|
14125
|
+
|
|
14126
|
+
@utility mb-spacing-brand-small-component-button-height-large {
|
|
14127
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-large);
|
|
14128
|
+
}
|
|
14129
|
+
|
|
14130
|
+
@utility ml-spacing-brand-small-component-button-height-large {
|
|
14131
|
+
margin-left: var(--spacing-brand-small-component-button-height-large);
|
|
14132
|
+
}
|
|
14133
|
+
|
|
14134
|
+
@utility w-spacing-brand-small-component-button-height-medium {
|
|
14135
|
+
width: var(--spacing-brand-small-component-button-height-medium);
|
|
14136
|
+
}
|
|
14137
|
+
|
|
14138
|
+
@utility h-spacing-brand-small-component-button-height-medium {
|
|
14139
|
+
height: var(--spacing-brand-small-component-button-height-medium);
|
|
14140
|
+
}
|
|
14141
|
+
|
|
14142
|
+
@utility gap-spacing-brand-small-component-button-height-medium {
|
|
14143
|
+
gap: var(--spacing-brand-small-component-button-height-medium);
|
|
14144
|
+
}
|
|
14145
|
+
|
|
14146
|
+
@utility p-spacing-brand-small-component-button-height-medium {
|
|
14147
|
+
padding: var(--spacing-brand-small-component-button-height-medium);
|
|
14148
|
+
}
|
|
14149
|
+
|
|
14150
|
+
@utility px-spacing-brand-small-component-button-height-medium {
|
|
14151
|
+
padding-left: var(--spacing-brand-small-component-button-height-medium);
|
|
14152
|
+
padding-right: var(--spacing-brand-small-component-button-height-medium);
|
|
14153
|
+
}
|
|
14154
|
+
|
|
14155
|
+
@utility py-spacing-brand-small-component-button-height-medium {
|
|
14156
|
+
padding-top: var(--spacing-brand-small-component-button-height-medium);
|
|
14157
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-medium);
|
|
14158
|
+
}
|
|
14159
|
+
|
|
14160
|
+
@utility pt-spacing-brand-small-component-button-height-medium {
|
|
14161
|
+
padding-top: var(--spacing-brand-small-component-button-height-medium);
|
|
14162
|
+
}
|
|
14163
|
+
|
|
14164
|
+
@utility pr-spacing-brand-small-component-button-height-medium {
|
|
14165
|
+
padding-right: var(--spacing-brand-small-component-button-height-medium);
|
|
14166
|
+
}
|
|
14167
|
+
|
|
14168
|
+
@utility pb-spacing-brand-small-component-button-height-medium {
|
|
14169
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-medium);
|
|
12678
14170
|
}
|
|
12679
14171
|
|
|
12680
|
-
@utility pl-spacing-brand-small-component-button-
|
|
12681
|
-
padding-left: var(--spacing-brand-small-component-button-
|
|
14172
|
+
@utility pl-spacing-brand-small-component-button-height-medium {
|
|
14173
|
+
padding-left: var(--spacing-brand-small-component-button-height-medium);
|
|
12682
14174
|
}
|
|
12683
14175
|
|
|
12684
|
-
@utility m-spacing-brand-small-component-button-
|
|
12685
|
-
margin: var(--spacing-brand-small-component-button-
|
|
14176
|
+
@utility m-spacing-brand-small-component-button-height-medium {
|
|
14177
|
+
margin: var(--spacing-brand-small-component-button-height-medium);
|
|
12686
14178
|
}
|
|
12687
14179
|
|
|
12688
|
-
@utility mx-spacing-brand-small-component-button-
|
|
12689
|
-
margin-left: var(--spacing-brand-small-component-button-
|
|
12690
|
-
margin-right: var(--spacing-brand-small-component-button-
|
|
14180
|
+
@utility mx-spacing-brand-small-component-button-height-medium {
|
|
14181
|
+
margin-left: var(--spacing-brand-small-component-button-height-medium);
|
|
14182
|
+
margin-right: var(--spacing-brand-small-component-button-height-medium);
|
|
12691
14183
|
}
|
|
12692
14184
|
|
|
12693
|
-
@utility my-spacing-brand-small-component-button-
|
|
12694
|
-
margin-top: var(--spacing-brand-small-component-button-
|
|
12695
|
-
margin-bottom: var(--spacing-brand-small-component-button-
|
|
14185
|
+
@utility my-spacing-brand-small-component-button-height-medium {
|
|
14186
|
+
margin-top: var(--spacing-brand-small-component-button-height-medium);
|
|
14187
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-medium);
|
|
12696
14188
|
}
|
|
12697
14189
|
|
|
12698
|
-
@utility mt-spacing-brand-small-component-button-
|
|
12699
|
-
margin-top: var(--spacing-brand-small-component-button-
|
|
14190
|
+
@utility mt-spacing-brand-small-component-button-height-medium {
|
|
14191
|
+
margin-top: var(--spacing-brand-small-component-button-height-medium);
|
|
12700
14192
|
}
|
|
12701
14193
|
|
|
12702
|
-
@utility mr-spacing-brand-small-component-button-
|
|
12703
|
-
margin-right: var(--spacing-brand-small-component-button-
|
|
14194
|
+
@utility mr-spacing-brand-small-component-button-height-medium {
|
|
14195
|
+
margin-right: var(--spacing-brand-small-component-button-height-medium);
|
|
12704
14196
|
}
|
|
12705
14197
|
|
|
12706
|
-
@utility mb-spacing-brand-small-component-button-
|
|
12707
|
-
margin-bottom: var(--spacing-brand-small-component-button-
|
|
14198
|
+
@utility mb-spacing-brand-small-component-button-height-medium {
|
|
14199
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-medium);
|
|
12708
14200
|
}
|
|
12709
14201
|
|
|
12710
|
-
@utility ml-spacing-brand-small-component-button-
|
|
12711
|
-
margin-left: var(--spacing-brand-small-component-button-
|
|
14202
|
+
@utility ml-spacing-brand-small-component-button-height-medium {
|
|
14203
|
+
margin-left: var(--spacing-brand-small-component-button-height-medium);
|
|
12712
14204
|
}
|
|
12713
14205
|
|
|
12714
|
-
@utility w-spacing-brand-small-component-button-
|
|
12715
|
-
width: var(--spacing-brand-small-component-button-
|
|
14206
|
+
@utility w-spacing-brand-small-component-button-height-small {
|
|
14207
|
+
width: var(--spacing-brand-small-component-button-height-small);
|
|
12716
14208
|
}
|
|
12717
14209
|
|
|
12718
|
-
@utility h-spacing-brand-small-component-button-
|
|
12719
|
-
height: var(--spacing-brand-small-component-button-
|
|
14210
|
+
@utility h-spacing-brand-small-component-button-height-small {
|
|
14211
|
+
height: var(--spacing-brand-small-component-button-height-small);
|
|
12720
14212
|
}
|
|
12721
14213
|
|
|
12722
|
-
@utility gap-spacing-brand-small-component-button-
|
|
12723
|
-
gap: var(--spacing-brand-small-component-button-
|
|
14214
|
+
@utility gap-spacing-brand-small-component-button-height-small {
|
|
14215
|
+
gap: var(--spacing-brand-small-component-button-height-small);
|
|
12724
14216
|
}
|
|
12725
14217
|
|
|
12726
|
-
@utility p-spacing-brand-small-component-button-
|
|
12727
|
-
padding: var(--spacing-brand-small-component-button-
|
|
14218
|
+
@utility p-spacing-brand-small-component-button-height-small {
|
|
14219
|
+
padding: var(--spacing-brand-small-component-button-height-small);
|
|
12728
14220
|
}
|
|
12729
14221
|
|
|
12730
|
-
@utility px-spacing-brand-small-component-button-
|
|
12731
|
-
padding-left: var(--spacing-brand-small-component-button-
|
|
12732
|
-
padding-right: var(--spacing-brand-small-component-button-
|
|
14222
|
+
@utility px-spacing-brand-small-component-button-height-small {
|
|
14223
|
+
padding-left: var(--spacing-brand-small-component-button-height-small);
|
|
14224
|
+
padding-right: var(--spacing-brand-small-component-button-height-small);
|
|
12733
14225
|
}
|
|
12734
14226
|
|
|
12735
|
-
@utility py-spacing-brand-small-component-button-
|
|
12736
|
-
padding-top: var(--spacing-brand-small-component-button-
|
|
12737
|
-
padding-bottom: var(--spacing-brand-small-component-button-
|
|
14227
|
+
@utility py-spacing-brand-small-component-button-height-small {
|
|
14228
|
+
padding-top: var(--spacing-brand-small-component-button-height-small);
|
|
14229
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-small);
|
|
12738
14230
|
}
|
|
12739
14231
|
|
|
12740
|
-
@utility pt-spacing-brand-small-component-button-
|
|
12741
|
-
padding-top: var(--spacing-brand-small-component-button-
|
|
14232
|
+
@utility pt-spacing-brand-small-component-button-height-small {
|
|
14233
|
+
padding-top: var(--spacing-brand-small-component-button-height-small);
|
|
12742
14234
|
}
|
|
12743
14235
|
|
|
12744
|
-
@utility pr-spacing-brand-small-component-button-
|
|
12745
|
-
padding-right: var(--spacing-brand-small-component-button-
|
|
14236
|
+
@utility pr-spacing-brand-small-component-button-height-small {
|
|
14237
|
+
padding-right: var(--spacing-brand-small-component-button-height-small);
|
|
12746
14238
|
}
|
|
12747
14239
|
|
|
12748
|
-
@utility pb-spacing-brand-small-component-button-
|
|
12749
|
-
padding-bottom: var(--spacing-brand-small-component-button-
|
|
14240
|
+
@utility pb-spacing-brand-small-component-button-height-small {
|
|
14241
|
+
padding-bottom: var(--spacing-brand-small-component-button-height-small);
|
|
12750
14242
|
}
|
|
12751
14243
|
|
|
12752
|
-
@utility pl-spacing-brand-small-component-button-
|
|
12753
|
-
padding-left: var(--spacing-brand-small-component-button-
|
|
14244
|
+
@utility pl-spacing-brand-small-component-button-height-small {
|
|
14245
|
+
padding-left: var(--spacing-brand-small-component-button-height-small);
|
|
12754
14246
|
}
|
|
12755
14247
|
|
|
12756
|
-
@utility m-spacing-brand-small-component-button-
|
|
12757
|
-
margin: var(--spacing-brand-small-component-button-
|
|
14248
|
+
@utility m-spacing-brand-small-component-button-height-small {
|
|
14249
|
+
margin: var(--spacing-brand-small-component-button-height-small);
|
|
12758
14250
|
}
|
|
12759
14251
|
|
|
12760
|
-
@utility mx-spacing-brand-small-component-button-
|
|
12761
|
-
margin-left: var(--spacing-brand-small-component-button-
|
|
12762
|
-
margin-right: var(--spacing-brand-small-component-button-
|
|
14252
|
+
@utility mx-spacing-brand-small-component-button-height-small {
|
|
14253
|
+
margin-left: var(--spacing-brand-small-component-button-height-small);
|
|
14254
|
+
margin-right: var(--spacing-brand-small-component-button-height-small);
|
|
12763
14255
|
}
|
|
12764
14256
|
|
|
12765
|
-
@utility my-spacing-brand-small-component-button-
|
|
12766
|
-
margin-top: var(--spacing-brand-small-component-button-
|
|
12767
|
-
margin-bottom: var(--spacing-brand-small-component-button-
|
|
14257
|
+
@utility my-spacing-brand-small-component-button-height-small {
|
|
14258
|
+
margin-top: var(--spacing-brand-small-component-button-height-small);
|
|
14259
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-small);
|
|
12768
14260
|
}
|
|
12769
14261
|
|
|
12770
|
-
@utility mt-spacing-brand-small-component-button-
|
|
12771
|
-
margin-top: var(--spacing-brand-small-component-button-
|
|
14262
|
+
@utility mt-spacing-brand-small-component-button-height-small {
|
|
14263
|
+
margin-top: var(--spacing-brand-small-component-button-height-small);
|
|
12772
14264
|
}
|
|
12773
14265
|
|
|
12774
|
-
@utility mr-spacing-brand-small-component-button-
|
|
12775
|
-
margin-right: var(--spacing-brand-small-component-button-
|
|
14266
|
+
@utility mr-spacing-brand-small-component-button-height-small {
|
|
14267
|
+
margin-right: var(--spacing-brand-small-component-button-height-small);
|
|
12776
14268
|
}
|
|
12777
14269
|
|
|
12778
|
-
@utility mb-spacing-brand-small-component-button-
|
|
12779
|
-
margin-bottom: var(--spacing-brand-small-component-button-
|
|
14270
|
+
@utility mb-spacing-brand-small-component-button-height-small {
|
|
14271
|
+
margin-bottom: var(--spacing-brand-small-component-button-height-small);
|
|
12780
14272
|
}
|
|
12781
14273
|
|
|
12782
|
-
@utility ml-spacing-brand-small-component-button-
|
|
12783
|
-
margin-left: var(--spacing-brand-small-component-button-
|
|
14274
|
+
@utility ml-spacing-brand-small-component-button-height-small {
|
|
14275
|
+
margin-left: var(--spacing-brand-small-component-button-height-small);
|
|
12784
14276
|
}
|
|
12785
14277
|
|
|
12786
14278
|
@utility w-spacing-brand-small-component-button-padding-x-large {
|
|
@@ -13215,6 +14707,222 @@
|
|
|
13215
14707
|
margin-left: var(--spacing-brand-small-component-button-padding-y-small);
|
|
13216
14708
|
}
|
|
13217
14709
|
|
|
14710
|
+
@utility w-spacing-brand-small-component-button-radius-large {
|
|
14711
|
+
width: var(--spacing-brand-small-component-button-radius-large);
|
|
14712
|
+
}
|
|
14713
|
+
|
|
14714
|
+
@utility h-spacing-brand-small-component-button-radius-large {
|
|
14715
|
+
height: var(--spacing-brand-small-component-button-radius-large);
|
|
14716
|
+
}
|
|
14717
|
+
|
|
14718
|
+
@utility gap-spacing-brand-small-component-button-radius-large {
|
|
14719
|
+
gap: var(--spacing-brand-small-component-button-radius-large);
|
|
14720
|
+
}
|
|
14721
|
+
|
|
14722
|
+
@utility p-spacing-brand-small-component-button-radius-large {
|
|
14723
|
+
padding: var(--spacing-brand-small-component-button-radius-large);
|
|
14724
|
+
}
|
|
14725
|
+
|
|
14726
|
+
@utility px-spacing-brand-small-component-button-radius-large {
|
|
14727
|
+
padding-left: var(--spacing-brand-small-component-button-radius-large);
|
|
14728
|
+
padding-right: var(--spacing-brand-small-component-button-radius-large);
|
|
14729
|
+
}
|
|
14730
|
+
|
|
14731
|
+
@utility py-spacing-brand-small-component-button-radius-large {
|
|
14732
|
+
padding-top: var(--spacing-brand-small-component-button-radius-large);
|
|
14733
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-large);
|
|
14734
|
+
}
|
|
14735
|
+
|
|
14736
|
+
@utility pt-spacing-brand-small-component-button-radius-large {
|
|
14737
|
+
padding-top: var(--spacing-brand-small-component-button-radius-large);
|
|
14738
|
+
}
|
|
14739
|
+
|
|
14740
|
+
@utility pr-spacing-brand-small-component-button-radius-large {
|
|
14741
|
+
padding-right: var(--spacing-brand-small-component-button-radius-large);
|
|
14742
|
+
}
|
|
14743
|
+
|
|
14744
|
+
@utility pb-spacing-brand-small-component-button-radius-large {
|
|
14745
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-large);
|
|
14746
|
+
}
|
|
14747
|
+
|
|
14748
|
+
@utility pl-spacing-brand-small-component-button-radius-large {
|
|
14749
|
+
padding-left: var(--spacing-brand-small-component-button-radius-large);
|
|
14750
|
+
}
|
|
14751
|
+
|
|
14752
|
+
@utility m-spacing-brand-small-component-button-radius-large {
|
|
14753
|
+
margin: var(--spacing-brand-small-component-button-radius-large);
|
|
14754
|
+
}
|
|
14755
|
+
|
|
14756
|
+
@utility mx-spacing-brand-small-component-button-radius-large {
|
|
14757
|
+
margin-left: var(--spacing-brand-small-component-button-radius-large);
|
|
14758
|
+
margin-right: var(--spacing-brand-small-component-button-radius-large);
|
|
14759
|
+
}
|
|
14760
|
+
|
|
14761
|
+
@utility my-spacing-brand-small-component-button-radius-large {
|
|
14762
|
+
margin-top: var(--spacing-brand-small-component-button-radius-large);
|
|
14763
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-large);
|
|
14764
|
+
}
|
|
14765
|
+
|
|
14766
|
+
@utility mt-spacing-brand-small-component-button-radius-large {
|
|
14767
|
+
margin-top: var(--spacing-brand-small-component-button-radius-large);
|
|
14768
|
+
}
|
|
14769
|
+
|
|
14770
|
+
@utility mr-spacing-brand-small-component-button-radius-large {
|
|
14771
|
+
margin-right: var(--spacing-brand-small-component-button-radius-large);
|
|
14772
|
+
}
|
|
14773
|
+
|
|
14774
|
+
@utility mb-spacing-brand-small-component-button-radius-large {
|
|
14775
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-large);
|
|
14776
|
+
}
|
|
14777
|
+
|
|
14778
|
+
@utility ml-spacing-brand-small-component-button-radius-large {
|
|
14779
|
+
margin-left: var(--spacing-brand-small-component-button-radius-large);
|
|
14780
|
+
}
|
|
14781
|
+
|
|
14782
|
+
@utility w-spacing-brand-small-component-button-radius-medium {
|
|
14783
|
+
width: var(--spacing-brand-small-component-button-radius-medium);
|
|
14784
|
+
}
|
|
14785
|
+
|
|
14786
|
+
@utility h-spacing-brand-small-component-button-radius-medium {
|
|
14787
|
+
height: var(--spacing-brand-small-component-button-radius-medium);
|
|
14788
|
+
}
|
|
14789
|
+
|
|
14790
|
+
@utility gap-spacing-brand-small-component-button-radius-medium {
|
|
14791
|
+
gap: var(--spacing-brand-small-component-button-radius-medium);
|
|
14792
|
+
}
|
|
14793
|
+
|
|
14794
|
+
@utility p-spacing-brand-small-component-button-radius-medium {
|
|
14795
|
+
padding: var(--spacing-brand-small-component-button-radius-medium);
|
|
14796
|
+
}
|
|
14797
|
+
|
|
14798
|
+
@utility px-spacing-brand-small-component-button-radius-medium {
|
|
14799
|
+
padding-left: var(--spacing-brand-small-component-button-radius-medium);
|
|
14800
|
+
padding-right: var(--spacing-brand-small-component-button-radius-medium);
|
|
14801
|
+
}
|
|
14802
|
+
|
|
14803
|
+
@utility py-spacing-brand-small-component-button-radius-medium {
|
|
14804
|
+
padding-top: var(--spacing-brand-small-component-button-radius-medium);
|
|
14805
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-medium);
|
|
14806
|
+
}
|
|
14807
|
+
|
|
14808
|
+
@utility pt-spacing-brand-small-component-button-radius-medium {
|
|
14809
|
+
padding-top: var(--spacing-brand-small-component-button-radius-medium);
|
|
14810
|
+
}
|
|
14811
|
+
|
|
14812
|
+
@utility pr-spacing-brand-small-component-button-radius-medium {
|
|
14813
|
+
padding-right: var(--spacing-brand-small-component-button-radius-medium);
|
|
14814
|
+
}
|
|
14815
|
+
|
|
14816
|
+
@utility pb-spacing-brand-small-component-button-radius-medium {
|
|
14817
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-medium);
|
|
14818
|
+
}
|
|
14819
|
+
|
|
14820
|
+
@utility pl-spacing-brand-small-component-button-radius-medium {
|
|
14821
|
+
padding-left: var(--spacing-brand-small-component-button-radius-medium);
|
|
14822
|
+
}
|
|
14823
|
+
|
|
14824
|
+
@utility m-spacing-brand-small-component-button-radius-medium {
|
|
14825
|
+
margin: var(--spacing-brand-small-component-button-radius-medium);
|
|
14826
|
+
}
|
|
14827
|
+
|
|
14828
|
+
@utility mx-spacing-brand-small-component-button-radius-medium {
|
|
14829
|
+
margin-left: var(--spacing-brand-small-component-button-radius-medium);
|
|
14830
|
+
margin-right: var(--spacing-brand-small-component-button-radius-medium);
|
|
14831
|
+
}
|
|
14832
|
+
|
|
14833
|
+
@utility my-spacing-brand-small-component-button-radius-medium {
|
|
14834
|
+
margin-top: var(--spacing-brand-small-component-button-radius-medium);
|
|
14835
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-medium);
|
|
14836
|
+
}
|
|
14837
|
+
|
|
14838
|
+
@utility mt-spacing-brand-small-component-button-radius-medium {
|
|
14839
|
+
margin-top: var(--spacing-brand-small-component-button-radius-medium);
|
|
14840
|
+
}
|
|
14841
|
+
|
|
14842
|
+
@utility mr-spacing-brand-small-component-button-radius-medium {
|
|
14843
|
+
margin-right: var(--spacing-brand-small-component-button-radius-medium);
|
|
14844
|
+
}
|
|
14845
|
+
|
|
14846
|
+
@utility mb-spacing-brand-small-component-button-radius-medium {
|
|
14847
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-medium);
|
|
14848
|
+
}
|
|
14849
|
+
|
|
14850
|
+
@utility ml-spacing-brand-small-component-button-radius-medium {
|
|
14851
|
+
margin-left: var(--spacing-brand-small-component-button-radius-medium);
|
|
14852
|
+
}
|
|
14853
|
+
|
|
14854
|
+
@utility w-spacing-brand-small-component-button-radius-small {
|
|
14855
|
+
width: var(--spacing-brand-small-component-button-radius-small);
|
|
14856
|
+
}
|
|
14857
|
+
|
|
14858
|
+
@utility h-spacing-brand-small-component-button-radius-small {
|
|
14859
|
+
height: var(--spacing-brand-small-component-button-radius-small);
|
|
14860
|
+
}
|
|
14861
|
+
|
|
14862
|
+
@utility gap-spacing-brand-small-component-button-radius-small {
|
|
14863
|
+
gap: var(--spacing-brand-small-component-button-radius-small);
|
|
14864
|
+
}
|
|
14865
|
+
|
|
14866
|
+
@utility p-spacing-brand-small-component-button-radius-small {
|
|
14867
|
+
padding: var(--spacing-brand-small-component-button-radius-small);
|
|
14868
|
+
}
|
|
14869
|
+
|
|
14870
|
+
@utility px-spacing-brand-small-component-button-radius-small {
|
|
14871
|
+
padding-left: var(--spacing-brand-small-component-button-radius-small);
|
|
14872
|
+
padding-right: var(--spacing-brand-small-component-button-radius-small);
|
|
14873
|
+
}
|
|
14874
|
+
|
|
14875
|
+
@utility py-spacing-brand-small-component-button-radius-small {
|
|
14876
|
+
padding-top: var(--spacing-brand-small-component-button-radius-small);
|
|
14877
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-small);
|
|
14878
|
+
}
|
|
14879
|
+
|
|
14880
|
+
@utility pt-spacing-brand-small-component-button-radius-small {
|
|
14881
|
+
padding-top: var(--spacing-brand-small-component-button-radius-small);
|
|
14882
|
+
}
|
|
14883
|
+
|
|
14884
|
+
@utility pr-spacing-brand-small-component-button-radius-small {
|
|
14885
|
+
padding-right: var(--spacing-brand-small-component-button-radius-small);
|
|
14886
|
+
}
|
|
14887
|
+
|
|
14888
|
+
@utility pb-spacing-brand-small-component-button-radius-small {
|
|
14889
|
+
padding-bottom: var(--spacing-brand-small-component-button-radius-small);
|
|
14890
|
+
}
|
|
14891
|
+
|
|
14892
|
+
@utility pl-spacing-brand-small-component-button-radius-small {
|
|
14893
|
+
padding-left: var(--spacing-brand-small-component-button-radius-small);
|
|
14894
|
+
}
|
|
14895
|
+
|
|
14896
|
+
@utility m-spacing-brand-small-component-button-radius-small {
|
|
14897
|
+
margin: var(--spacing-brand-small-component-button-radius-small);
|
|
14898
|
+
}
|
|
14899
|
+
|
|
14900
|
+
@utility mx-spacing-brand-small-component-button-radius-small {
|
|
14901
|
+
margin-left: var(--spacing-brand-small-component-button-radius-small);
|
|
14902
|
+
margin-right: var(--spacing-brand-small-component-button-radius-small);
|
|
14903
|
+
}
|
|
14904
|
+
|
|
14905
|
+
@utility my-spacing-brand-small-component-button-radius-small {
|
|
14906
|
+
margin-top: var(--spacing-brand-small-component-button-radius-small);
|
|
14907
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-small);
|
|
14908
|
+
}
|
|
14909
|
+
|
|
14910
|
+
@utility mt-spacing-brand-small-component-button-radius-small {
|
|
14911
|
+
margin-top: var(--spacing-brand-small-component-button-radius-small);
|
|
14912
|
+
}
|
|
14913
|
+
|
|
14914
|
+
@utility mr-spacing-brand-small-component-button-radius-small {
|
|
14915
|
+
margin-right: var(--spacing-brand-small-component-button-radius-small);
|
|
14916
|
+
}
|
|
14917
|
+
|
|
14918
|
+
@utility mb-spacing-brand-small-component-button-radius-small {
|
|
14919
|
+
margin-bottom: var(--spacing-brand-small-component-button-radius-small);
|
|
14920
|
+
}
|
|
14921
|
+
|
|
14922
|
+
@utility ml-spacing-brand-small-component-button-radius-small {
|
|
14923
|
+
margin-left: var(--spacing-brand-small-component-button-radius-small);
|
|
14924
|
+
}
|
|
14925
|
+
|
|
13218
14926
|
@utility w-spacing-brand-small-component-card-gap-internal {
|
|
13219
14927
|
width: var(--spacing-brand-small-component-card-gap-internal);
|
|
13220
14928
|
}
|
|
@@ -15159,6 +16867,150 @@
|
|
|
15159
16867
|
margin-left: var(--spacing-brand-small-layout-grid-gap-small);
|
|
15160
16868
|
}
|
|
15161
16869
|
|
|
16870
|
+
@utility w-spacing-brand-small-layout-grid-gutter {
|
|
16871
|
+
width: var(--spacing-brand-small-layout-grid-gutter);
|
|
16872
|
+
}
|
|
16873
|
+
|
|
16874
|
+
@utility h-spacing-brand-small-layout-grid-gutter {
|
|
16875
|
+
height: var(--spacing-brand-small-layout-grid-gutter);
|
|
16876
|
+
}
|
|
16877
|
+
|
|
16878
|
+
@utility gap-spacing-brand-small-layout-grid-gutter {
|
|
16879
|
+
gap: var(--spacing-brand-small-layout-grid-gutter);
|
|
16880
|
+
}
|
|
16881
|
+
|
|
16882
|
+
@utility p-spacing-brand-small-layout-grid-gutter {
|
|
16883
|
+
padding: var(--spacing-brand-small-layout-grid-gutter);
|
|
16884
|
+
}
|
|
16885
|
+
|
|
16886
|
+
@utility px-spacing-brand-small-layout-grid-gutter {
|
|
16887
|
+
padding-left: var(--spacing-brand-small-layout-grid-gutter);
|
|
16888
|
+
padding-right: var(--spacing-brand-small-layout-grid-gutter);
|
|
16889
|
+
}
|
|
16890
|
+
|
|
16891
|
+
@utility py-spacing-brand-small-layout-grid-gutter {
|
|
16892
|
+
padding-top: var(--spacing-brand-small-layout-grid-gutter);
|
|
16893
|
+
padding-bottom: var(--spacing-brand-small-layout-grid-gutter);
|
|
16894
|
+
}
|
|
16895
|
+
|
|
16896
|
+
@utility pt-spacing-brand-small-layout-grid-gutter {
|
|
16897
|
+
padding-top: var(--spacing-brand-small-layout-grid-gutter);
|
|
16898
|
+
}
|
|
16899
|
+
|
|
16900
|
+
@utility pr-spacing-brand-small-layout-grid-gutter {
|
|
16901
|
+
padding-right: var(--spacing-brand-small-layout-grid-gutter);
|
|
16902
|
+
}
|
|
16903
|
+
|
|
16904
|
+
@utility pb-spacing-brand-small-layout-grid-gutter {
|
|
16905
|
+
padding-bottom: var(--spacing-brand-small-layout-grid-gutter);
|
|
16906
|
+
}
|
|
16907
|
+
|
|
16908
|
+
@utility pl-spacing-brand-small-layout-grid-gutter {
|
|
16909
|
+
padding-left: var(--spacing-brand-small-layout-grid-gutter);
|
|
16910
|
+
}
|
|
16911
|
+
|
|
16912
|
+
@utility m-spacing-brand-small-layout-grid-gutter {
|
|
16913
|
+
margin: var(--spacing-brand-small-layout-grid-gutter);
|
|
16914
|
+
}
|
|
16915
|
+
|
|
16916
|
+
@utility mx-spacing-brand-small-layout-grid-gutter {
|
|
16917
|
+
margin-left: var(--spacing-brand-small-layout-grid-gutter);
|
|
16918
|
+
margin-right: var(--spacing-brand-small-layout-grid-gutter);
|
|
16919
|
+
}
|
|
16920
|
+
|
|
16921
|
+
@utility my-spacing-brand-small-layout-grid-gutter {
|
|
16922
|
+
margin-top: var(--spacing-brand-small-layout-grid-gutter);
|
|
16923
|
+
margin-bottom: var(--spacing-brand-small-layout-grid-gutter);
|
|
16924
|
+
}
|
|
16925
|
+
|
|
16926
|
+
@utility mt-spacing-brand-small-layout-grid-gutter {
|
|
16927
|
+
margin-top: var(--spacing-brand-small-layout-grid-gutter);
|
|
16928
|
+
}
|
|
16929
|
+
|
|
16930
|
+
@utility mr-spacing-brand-small-layout-grid-gutter {
|
|
16931
|
+
margin-right: var(--spacing-brand-small-layout-grid-gutter);
|
|
16932
|
+
}
|
|
16933
|
+
|
|
16934
|
+
@utility mb-spacing-brand-small-layout-grid-gutter {
|
|
16935
|
+
margin-bottom: var(--spacing-brand-small-layout-grid-gutter);
|
|
16936
|
+
}
|
|
16937
|
+
|
|
16938
|
+
@utility ml-spacing-brand-small-layout-grid-gutter {
|
|
16939
|
+
margin-left: var(--spacing-brand-small-layout-grid-gutter);
|
|
16940
|
+
}
|
|
16941
|
+
|
|
16942
|
+
@utility w-spacing-brand-small-layout-grid-margin {
|
|
16943
|
+
width: var(--spacing-brand-small-layout-grid-margin);
|
|
16944
|
+
}
|
|
16945
|
+
|
|
16946
|
+
@utility h-spacing-brand-small-layout-grid-margin {
|
|
16947
|
+
height: var(--spacing-brand-small-layout-grid-margin);
|
|
16948
|
+
}
|
|
16949
|
+
|
|
16950
|
+
@utility gap-spacing-brand-small-layout-grid-margin {
|
|
16951
|
+
gap: var(--spacing-brand-small-layout-grid-margin);
|
|
16952
|
+
}
|
|
16953
|
+
|
|
16954
|
+
@utility p-spacing-brand-small-layout-grid-margin {
|
|
16955
|
+
padding: var(--spacing-brand-small-layout-grid-margin);
|
|
16956
|
+
}
|
|
16957
|
+
|
|
16958
|
+
@utility px-spacing-brand-small-layout-grid-margin {
|
|
16959
|
+
padding-left: var(--spacing-brand-small-layout-grid-margin);
|
|
16960
|
+
padding-right: var(--spacing-brand-small-layout-grid-margin);
|
|
16961
|
+
}
|
|
16962
|
+
|
|
16963
|
+
@utility py-spacing-brand-small-layout-grid-margin {
|
|
16964
|
+
padding-top: var(--spacing-brand-small-layout-grid-margin);
|
|
16965
|
+
padding-bottom: var(--spacing-brand-small-layout-grid-margin);
|
|
16966
|
+
}
|
|
16967
|
+
|
|
16968
|
+
@utility pt-spacing-brand-small-layout-grid-margin {
|
|
16969
|
+
padding-top: var(--spacing-brand-small-layout-grid-margin);
|
|
16970
|
+
}
|
|
16971
|
+
|
|
16972
|
+
@utility pr-spacing-brand-small-layout-grid-margin {
|
|
16973
|
+
padding-right: var(--spacing-brand-small-layout-grid-margin);
|
|
16974
|
+
}
|
|
16975
|
+
|
|
16976
|
+
@utility pb-spacing-brand-small-layout-grid-margin {
|
|
16977
|
+
padding-bottom: var(--spacing-brand-small-layout-grid-margin);
|
|
16978
|
+
}
|
|
16979
|
+
|
|
16980
|
+
@utility pl-spacing-brand-small-layout-grid-margin {
|
|
16981
|
+
padding-left: var(--spacing-brand-small-layout-grid-margin);
|
|
16982
|
+
}
|
|
16983
|
+
|
|
16984
|
+
@utility m-spacing-brand-small-layout-grid-margin {
|
|
16985
|
+
margin: var(--spacing-brand-small-layout-grid-margin);
|
|
16986
|
+
}
|
|
16987
|
+
|
|
16988
|
+
@utility mx-spacing-brand-small-layout-grid-margin {
|
|
16989
|
+
margin-left: var(--spacing-brand-small-layout-grid-margin);
|
|
16990
|
+
margin-right: var(--spacing-brand-small-layout-grid-margin);
|
|
16991
|
+
}
|
|
16992
|
+
|
|
16993
|
+
@utility my-spacing-brand-small-layout-grid-margin {
|
|
16994
|
+
margin-top: var(--spacing-brand-small-layout-grid-margin);
|
|
16995
|
+
margin-bottom: var(--spacing-brand-small-layout-grid-margin);
|
|
16996
|
+
}
|
|
16997
|
+
|
|
16998
|
+
@utility mt-spacing-brand-small-layout-grid-margin {
|
|
16999
|
+
margin-top: var(--spacing-brand-small-layout-grid-margin);
|
|
17000
|
+
}
|
|
17001
|
+
|
|
17002
|
+
@utility mr-spacing-brand-small-layout-grid-margin {
|
|
17003
|
+
margin-right: var(--spacing-brand-small-layout-grid-margin);
|
|
17004
|
+
}
|
|
17005
|
+
|
|
17006
|
+
@utility mb-spacing-brand-small-layout-grid-margin {
|
|
17007
|
+
margin-bottom: var(--spacing-brand-small-layout-grid-margin);
|
|
17008
|
+
}
|
|
17009
|
+
|
|
17010
|
+
@utility ml-spacing-brand-small-layout-grid-margin {
|
|
17011
|
+
margin-left: var(--spacing-brand-small-layout-grid-margin);
|
|
17012
|
+
}
|
|
17013
|
+
|
|
15162
17014
|
@utility w-spacing-brand-small-layout-hero-gap-content-cta {
|
|
15163
17015
|
width: var(--spacing-brand-small-layout-hero-gap-content-cta);
|
|
15164
17016
|
}
|
|
@@ -16021,4 +17873,58 @@
|
|
|
16021
17873
|
|
|
16022
17874
|
@utility ml-spacing-brand-small-layout-section-padding-y-small {
|
|
16023
17875
|
margin-left: var(--spacing-brand-small-layout-section-padding-y-small);
|
|
16024
|
-
}
|
|
17876
|
+
}
|
|
17877
|
+
|
|
17878
|
+
/* Grid Layout Utilities */
|
|
17879
|
+
|
|
17880
|
+
@utility grid-container {
|
|
17881
|
+
display: grid;
|
|
17882
|
+
width: 100%;
|
|
17883
|
+
max-width: var(--breakpoint-lg);
|
|
17884
|
+
margin-inline: auto;
|
|
17885
|
+
overflow-x: hidden;
|
|
17886
|
+
|
|
17887
|
+
/* Mobile (default): single column */
|
|
17888
|
+
grid-template-columns: 1fr;
|
|
17889
|
+
padding-inline: var(--spacing-brand-small-layout-grid-margin);
|
|
17890
|
+
|
|
17891
|
+
/* Tablet (md breakpoint+) */
|
|
17892
|
+
@media (width >= 48rem) {
|
|
17893
|
+
padding-inline: var(--spacing-brand-medium-layout-grid-margin);
|
|
17894
|
+
}
|
|
17895
|
+
|
|
17896
|
+
/* Desktop (lg breakpoint+) */
|
|
17897
|
+
@media (width >= 90rem) {
|
|
17898
|
+
grid-template-columns: repeat(24, 1fr);
|
|
17899
|
+
gap: var(--spacing-brand-large-layout-grid-gutter);
|
|
17900
|
+
padding-inline: var(--spacing-brand-large-layout-grid-margin);
|
|
17901
|
+
}
|
|
17902
|
+
}
|
|
17903
|
+
|
|
17904
|
+
@utility col-full {
|
|
17905
|
+
grid-column: 1 / -1;
|
|
17906
|
+
}
|
|
17907
|
+
|
|
17908
|
+
@utility col-wide {
|
|
17909
|
+
grid-column: 1 / -1;
|
|
17910
|
+
|
|
17911
|
+
@media (width >= 90rem) {
|
|
17912
|
+
grid-column: 4 / 22; /* 18 columns centered */
|
|
17913
|
+
}
|
|
17914
|
+
}
|
|
17915
|
+
|
|
17916
|
+
@utility col-content {
|
|
17917
|
+
grid-column: 1 / -1;
|
|
17918
|
+
|
|
17919
|
+
@media (width >= 90rem) {
|
|
17920
|
+
grid-column: 7 / 19; /* Center 12 columns */
|
|
17921
|
+
}
|
|
17922
|
+
}
|
|
17923
|
+
|
|
17924
|
+
@utility col-narrow {
|
|
17925
|
+
grid-column: 1 / -1;
|
|
17926
|
+
|
|
17927
|
+
@media (width >= 90rem) {
|
|
17928
|
+
grid-column: 9 / 17; /* Center 8 columns */
|
|
17929
|
+
}
|
|
17930
|
+
}
|