@kickstartds/ds-agency-premium 1.6.71--canary.45.1758.0 → 1.6.71--canary.45.1764.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/blog-aside/blog-aside.css +4 -4
- package/dist/components/blog-aside/index.js +3 -3
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-post/index.js +4 -2
- package/dist/components/contact/contact.css +8 -6
- package/dist/components/index/index.d.ts +1 -1
- package/dist/components/logos/index.js +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +138 -70
- package/dist/components/split-even/index.d.ts +74 -1
- package/dist/components/split-even/index.js +6 -0
- package/dist/components/split-even/split-even.css +94 -0
- package/dist/components/split-even/split-even.schema.dereffed.json +17 -5
- package/dist/components/split-even/split-even.schema.json +12 -5
- package/dist/components/split-weighted/index.d.ts +101 -0
- package/dist/components/split-weighted/index.js +13 -0
- package/dist/components/split-weighted/split-weighted.css +109 -0
- package/dist/components/split-weighted/split-weighted.schema.dereffed.json +5952 -0
- package/dist/components/split-weighted/split-weighted.schema.json +210 -0
- package/dist/static/img/people/author-emily.png +0 -0
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- package/dist/components/split/index.d.ts +0 -14
- package/dist/components/split/index.js +0 -17
- package/dist/components/split/split.css +0 -53
- package/dist/components/split/split.schema.dereffed.json +0 -29
- package/dist/components/split/split.schema.json +0 -19
- /package/dist/{BlogPostProps-c760fd2a.d.ts → BlogPostProps-6b3cff22.d.ts} +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.l-split-even {
|
|
2
|
+
--dsa-split-even--v-gutter_default: var(--ks-spacing-stack-m);
|
|
3
|
+
--dsa-split-even--v-gutter_small: var(--ks-spacing-stack-l);
|
|
4
|
+
--dsa-split-even--v-gutter_large: var(--dsa-content--vertical-spacing);
|
|
5
|
+
--dsa-split-even--h-gutter_default: var(--ks-spacing-inline-l);
|
|
6
|
+
--dsa-split-even--h-gutter_small: var(--ks-spacing-inline-m);
|
|
7
|
+
--dsa-split-even--h-gutter_large: var(--ks-spacing-xxl);
|
|
8
|
+
--dsa-split-even__content--gutter_small: var(--ks-spacing-stack-s);
|
|
9
|
+
--dsa-split-even__content--gutter_default: var(--ks-spacing-stack-m);
|
|
10
|
+
--dsa-split-even__content--gutter_large: var(--ks-spacing-stack-xl);
|
|
11
|
+
--dsa-split-even__content--flex-basis_narrow: var(--dsa-tile--width_small);
|
|
12
|
+
--dsa-split-even__content--flex-basis_medium: var(--dsa-tile--width_medium);
|
|
13
|
+
--dsa-split-even__content--flex-basis_wide: var(--dsa-tile--width_large);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.l-split-even {
|
|
17
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_default, var(--ks-spacing-stack-m));
|
|
18
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_default, var(--ks-spacing-inline-l));
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-wrap: wrap;
|
|
21
|
+
gap: var(--dsa-split-even--v-gutter) var(--dsa-split-even--h-gutter);
|
|
22
|
+
}
|
|
23
|
+
.l-split-even--v-gutter-small {
|
|
24
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_small, var(--ks-spacing-stack-l));
|
|
25
|
+
}
|
|
26
|
+
.l-split-even--v-gutter-large {
|
|
27
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_large, var(--dsa-content--vertical-spacing));
|
|
28
|
+
}
|
|
29
|
+
.l-split-even--v-gutter-none {
|
|
30
|
+
--dsa-split-even--v-gutter: 0;
|
|
31
|
+
}
|
|
32
|
+
.l-split-even--h-gutter-small {
|
|
33
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_small, var(--ks-spacing-inline-m));
|
|
34
|
+
}
|
|
35
|
+
.l-split-even--h-gutter-large {
|
|
36
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_large, var(--ks-spacing-xxl));
|
|
37
|
+
}
|
|
38
|
+
.l-split-even--h-gutter-none {
|
|
39
|
+
--dsa-split-even--h-gutter: 0;
|
|
40
|
+
}
|
|
41
|
+
.l-split-even--width-narrow {
|
|
42
|
+
--dsa-split-even__content--flex-basis: var(
|
|
43
|
+
--dsa-split-even__content--flex-basis_narrow,
|
|
44
|
+
var(--dsa-tile--width_small)
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
.l-split-even--width-medium {
|
|
48
|
+
--dsa-split-even__content--flex-basis: var(
|
|
49
|
+
--dsa-split-even__content--flex-basis_medium,
|
|
50
|
+
var(--dsa-tile--width_medium)
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
.l-split-even--width-wide {
|
|
54
|
+
--dsa-split-even__content--flex-basis: var(
|
|
55
|
+
--dsa-split-even__content--flex-basis_wide,
|
|
56
|
+
var(--dsa-tile--width_large)
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
.l-split-even--align-top {
|
|
60
|
+
align-items: flex-start;
|
|
61
|
+
}
|
|
62
|
+
.l-split-even--align-center {
|
|
63
|
+
align-items: center;
|
|
64
|
+
}
|
|
65
|
+
.l-split-even--align-bottom {
|
|
66
|
+
align-items: flex-end;
|
|
67
|
+
}
|
|
68
|
+
.l-split-even--mobile_stack-reverse {
|
|
69
|
+
flex-wrap: wrap-reverse;
|
|
70
|
+
}
|
|
71
|
+
.l-split-even--mobile_stack-reverse.l-split-even--align-top {
|
|
72
|
+
align-items: flex-end;
|
|
73
|
+
}
|
|
74
|
+
.l-split-even--mobile_stack-reverse.l-split-even--align-bottom {
|
|
75
|
+
align-items: flex-start;
|
|
76
|
+
}
|
|
77
|
+
.l-split-even__content {
|
|
78
|
+
flex: 1 1 var(--dsa-split-even__content--flex-basis);
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-direction: column;
|
|
81
|
+
gap: var(--dsa-split-even__content--gutter_default, var(--ks-spacing-stack-m));
|
|
82
|
+
}
|
|
83
|
+
.l-split-even__content--gutter-none {
|
|
84
|
+
gap: 0;
|
|
85
|
+
}
|
|
86
|
+
.l-split-even__content--gutter-small {
|
|
87
|
+
gap: var(--dsa-split-even__content--gutter_small, var(--ks-spacing-stack-s));
|
|
88
|
+
}
|
|
89
|
+
.l-split-even__content--gutter-large {
|
|
90
|
+
gap: var(--dsa-split-even__content--gutter_large, var(--ks-spacing-stack-xl));
|
|
91
|
+
}
|
|
92
|
+
.l-split-even__content .c-button {
|
|
93
|
+
width: fit-content;
|
|
94
|
+
}
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"type": "string",
|
|
22
22
|
"enum": [
|
|
23
23
|
"narrow",
|
|
24
|
-
"
|
|
24
|
+
"default",
|
|
25
25
|
"wide",
|
|
26
26
|
"none"
|
|
27
27
|
],
|
|
28
|
-
"default": "
|
|
28
|
+
"default": "default"
|
|
29
29
|
},
|
|
30
30
|
"mobileLayout": {
|
|
31
31
|
"title": "Mobile Layout",
|
|
@@ -48,10 +48,22 @@
|
|
|
48
48
|
],
|
|
49
49
|
"default": "top"
|
|
50
50
|
},
|
|
51
|
-
"
|
|
52
|
-
"title": "Gutter",
|
|
51
|
+
"verticalGutter": {
|
|
52
|
+
"title": "Vertical Gutter",
|
|
53
|
+
"description": "Sets the vertical space between the content of the split layout",
|
|
54
|
+
"type": "string",
|
|
55
|
+
"enum": [
|
|
56
|
+
"large",
|
|
57
|
+
"default",
|
|
58
|
+
"small",
|
|
59
|
+
"none"
|
|
60
|
+
],
|
|
61
|
+
"default": "default"
|
|
62
|
+
},
|
|
63
|
+
"horizontalGutter": {
|
|
64
|
+
"title": "Horizontal Gutter",
|
|
65
|
+
"description": "Sets the horizontal space between the content of the split layout",
|
|
53
66
|
"type": "string",
|
|
54
|
-
"description": "Sets the space between the two halves of the split layout",
|
|
55
67
|
"enum": [
|
|
56
68
|
"large",
|
|
57
69
|
"default",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"title": "Content Gutter",
|
|
16
16
|
"description": "Sets the space between the content inside the two halves of the split layout",
|
|
17
17
|
"type": "string",
|
|
18
|
-
"enum": ["narrow", "
|
|
19
|
-
"default": "
|
|
18
|
+
"enum": ["narrow", "default", "wide", "none"],
|
|
19
|
+
"default": "default"
|
|
20
20
|
},
|
|
21
21
|
"mobileLayout": {
|
|
22
22
|
"title": "Mobile Layout",
|
|
@@ -32,10 +32,17 @@
|
|
|
32
32
|
"enum": ["top", "center", "bottom"],
|
|
33
33
|
"default": "top"
|
|
34
34
|
},
|
|
35
|
-
"
|
|
36
|
-
"title": "Gutter",
|
|
35
|
+
"verticalGutter": {
|
|
36
|
+
"title": "Vertical Gutter",
|
|
37
|
+
"description": "Sets the vertical space between the content of the split layout",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"enum": ["large", "default", "small", "none"],
|
|
40
|
+
"default": "default"
|
|
41
|
+
},
|
|
42
|
+
"horizontalGutter": {
|
|
43
|
+
"title": "Horizontal Gutter",
|
|
44
|
+
"description": "Sets the horizontal space between the content of the split layout",
|
|
37
45
|
"type": "string",
|
|
38
|
-
"description": "Sets the space between the two halves of the split layout",
|
|
39
46
|
"enum": ["large", "default", "small", "none"],
|
|
40
47
|
"default": "default"
|
|
41
48
|
},
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { FC } from "react";
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
6
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
7
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
8
|
+
*/
|
|
9
|
+
import { CtaProps } from "../../CtaProps-babe4ee6.js";
|
|
10
|
+
import { DividerProps } from "../../DividerProps-2ef31901.js";
|
|
11
|
+
import { FaqProps } from "../../FaqProps-ad618cd5.js";
|
|
12
|
+
import { FeaturesProps } from "../../FeaturesProps-a9041d97.js";
|
|
13
|
+
import { GalleryProps } from "../../GalleryProps-76e7de44.js";
|
|
14
|
+
import { HeroProps } from "../../HeroProps-40f6c7f5.js";
|
|
15
|
+
import { HtmlProps } from "../../HtmlProps-9d091769.js";
|
|
16
|
+
import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
|
|
17
|
+
import { ImageTextProps } from "../../ImageTextProps-9286cca4.js";
|
|
18
|
+
import { LogosProps } from "../../LogosProps-f9474fe2.js";
|
|
19
|
+
import { MosaicProps } from "../../MosaicProps-d52c7151.js";
|
|
20
|
+
import { SliderProps } from "../../SliderProps-babe4ee6.js";
|
|
21
|
+
import { StatsProps } from "../../StatsProps-bf5ef578.js";
|
|
22
|
+
import { TeaserCardProps } from "../../TeaserCardProps-994cb119.js";
|
|
23
|
+
import { TestimonialsProps } from "../../TestimonialsProps-e344f597.js";
|
|
24
|
+
import { TextProps } from "../../TextProps-a23170d2.js";
|
|
25
|
+
import { VideoCurtainProps } from "../../VideoCurtainProps-a2c0cc7f.js";
|
|
26
|
+
/**
|
|
27
|
+
* Sets the vertical space between the content of the split layout
|
|
28
|
+
*/
|
|
29
|
+
type VerticalGutter = "large" | "default" | "small" | "none";
|
|
30
|
+
/**
|
|
31
|
+
* Sets the horizontal space between the content of the split layout
|
|
32
|
+
*/
|
|
33
|
+
type HorizontalGutter = "large" | "default" | "small" | "none";
|
|
34
|
+
/**
|
|
35
|
+
* Makes the side part sticky on scroll
|
|
36
|
+
*/
|
|
37
|
+
type Sticky = boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Sets the space between the content of the split layout
|
|
40
|
+
*/
|
|
41
|
+
type ContentGutter = "large" | "default" | "small" | "none";
|
|
42
|
+
/**
|
|
43
|
+
* Sets the minimum width of the main section
|
|
44
|
+
*/
|
|
45
|
+
type MinimumWidth = "narrow" | "default" | "wide";
|
|
46
|
+
/**
|
|
47
|
+
* Size of gutter to use
|
|
48
|
+
*/
|
|
49
|
+
type Gutter = "large" | "default" | "small" | "none";
|
|
50
|
+
/**
|
|
51
|
+
* Sets the minimum width of the main section
|
|
52
|
+
*/
|
|
53
|
+
type MinimumWidth1 = "narrow" | "default" | "wide";
|
|
54
|
+
/**
|
|
55
|
+
* Determines the order of sections on mobile devices
|
|
56
|
+
*/
|
|
57
|
+
type MobileOrder = "mainFirst" | "contextFirst";
|
|
58
|
+
/**
|
|
59
|
+
* Determines the order of sections on desktop devices
|
|
60
|
+
*/
|
|
61
|
+
type DesktopOrder = "mainFirst" | "contextFirst";
|
|
62
|
+
/**
|
|
63
|
+
* Allowed components for the main half of the split layout
|
|
64
|
+
*/
|
|
65
|
+
type Main = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
66
|
+
/**
|
|
67
|
+
* Allowed components for the context half of the split layout
|
|
68
|
+
*/
|
|
69
|
+
type Context = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
70
|
+
interface SplitWeightedProps {
|
|
71
|
+
verticalGutter?: VerticalGutter;
|
|
72
|
+
horizontalGutter?: HorizontalGutter;
|
|
73
|
+
sticky?: Sticky;
|
|
74
|
+
mainLayout?: MainLayout;
|
|
75
|
+
contextLayout?: ContextLayout;
|
|
76
|
+
order?: Order;
|
|
77
|
+
mainComponents?: Main;
|
|
78
|
+
contextComponents?: Context;
|
|
79
|
+
}
|
|
80
|
+
interface MainLayout {
|
|
81
|
+
gutter?: ContentGutter;
|
|
82
|
+
minWidth?: MinimumWidth;
|
|
83
|
+
}
|
|
84
|
+
interface ContextLayout {
|
|
85
|
+
gutter?: Gutter;
|
|
86
|
+
minWidth?: MinimumWidth1;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Sets the order of the main and context sections in the split layout
|
|
90
|
+
*/
|
|
91
|
+
interface Order {
|
|
92
|
+
mobile?: MobileOrder;
|
|
93
|
+
desktop?: DesktopOrder;
|
|
94
|
+
}
|
|
95
|
+
interface ComponentProps {
|
|
96
|
+
main?: React.ReactNode;
|
|
97
|
+
context?: React.ReactNode;
|
|
98
|
+
}
|
|
99
|
+
type SplitWeightedComponentProps = SplitWeightedProps & ComponentProps;
|
|
100
|
+
declare const SplitWeighted: FC<SplitWeightedComponentProps>;
|
|
101
|
+
export { ComponentProps, SplitWeightedComponentProps, SplitWeighted };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import "./split-weighted.css";
|
|
2
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
3
|
+
import classnames from 'classnames';
|
|
4
|
+
|
|
5
|
+
const SplitWeighted = ({ order, mainLayout, contextLayout, horizontalGutter = "default", verticalGutter = "default", main, context, sticky = false, }) => (jsxs("div", { className: classnames("l-split-weighted", order?.desktop === "contextFirst" &&
|
|
6
|
+
"l-split-weighted--desktop-context-first", order?.mobile === "contextFirst" &&
|
|
7
|
+
"l-split-weighted--mobile-context-first", horizontalGutter && `l-split-weighted--h-gutter-${horizontalGutter}`, verticalGutter && `l-split-weighted--v-gutter-${verticalGutter}`, sticky && `l-split-weighted--sticky`), children: [jsx("div", { className: classnames("l-split-weighted__main l-split-weighted__content", mainLayout?.gutter &&
|
|
8
|
+
`l-split-weighted__main--gutter-${mainLayout.gutter}`, mainLayout?.minWidth &&
|
|
9
|
+
`l-split-weighted__main--width-${mainLayout.minWidth}`), children: sticky ? (jsx("div", { className: "l-split-weighted__sticky-container", children: main })) : (main) }), jsx("div", { className: classnames("l-split-weighted__context l-split-weighted__content", contextLayout?.gutter &&
|
|
10
|
+
`l-split-weighted__context--gutter-${contextLayout.gutter || "large"}`, contextLayout?.minWidth &&
|
|
11
|
+
`l-split-weighted__context--width-${contextLayout.minWidth}`), children: sticky ? (jsx("div", { className: "l-split-weighted__sticky-container", children: context })) : (context) })] }));
|
|
12
|
+
|
|
13
|
+
export { SplitWeighted };
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
.l-split-weighted {
|
|
2
|
+
--dsa-split-weighted--sticky-margin: var(--ks-spacing-stack-l);
|
|
3
|
+
--dsa-split-weighted--v-gutter_default: var(--ks-spacing-stack-m);
|
|
4
|
+
--dsa-split-weighted--v-gutter_small: var(--ks-spacing-stack-l);
|
|
5
|
+
--dsa-split-weighted--v-gutter_large: var(--dsa-content--vertical-spacing);
|
|
6
|
+
--dsa-split-weighted--h-gutter_default: var(--ks-spacing-inline-l);
|
|
7
|
+
--dsa-split-weighted--h-gutter_small: var(--ks-spacing-inline-m);
|
|
8
|
+
--dsa-split-weighted--h-gutter_large: var(--ks-spacing-xxl);
|
|
9
|
+
--dsa-split-weighted__main--flex-basis_default: var(--dsa-tile--width_large);
|
|
10
|
+
--dsa-split-weighted__main--flex-basis_narrow: var(--dsa-tile--width_medium);
|
|
11
|
+
--dsa-split-weighted__main--flex-basis_wide: var(--dsa-tile--width_largest);
|
|
12
|
+
--dsa-split-weighted__main--gutter_default: var(--ks-spacing-stack-l);
|
|
13
|
+
--dsa-split-weighted__main--gutter_small: var(--ks-spacing-stack-s);
|
|
14
|
+
--dsa-split-weighted__main--gutter_large: var(--dsa-content--vertical-spacing);
|
|
15
|
+
--dsa-split-weighted__context--flex-basis_default: var(--dsa-tile--width_medium);
|
|
16
|
+
--dsa-split-weighted__context--flex-basis_narrow: var(--dsa-tile--width_small);
|
|
17
|
+
--dsa-split-weighted__context--flex-basis_wide: var(--dsa-tile--width_large);
|
|
18
|
+
--dsa-split-weighted__context--gutter_default: var(--ks-spacing-stack-s);
|
|
19
|
+
--dsa-split-weighted__context--gutter_small: var(--ks-spacing-stack-xs);
|
|
20
|
+
--dsa-split-weighted__context--gutter_large: var(--ks-spacing-stack-m);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.l-split-weighted {
|
|
24
|
+
--dsa-split-weighted--v-gutter: var(--dsa-split-weighted--v-gutter_default, var(--ks-spacing-stack-m));
|
|
25
|
+
--dsa-split-weighted--h-gutter: var(--dsa-split-weighted--h-gutter_default, var(--ks-spacing-inline-l));
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-wrap: wrap;
|
|
28
|
+
gap: var(--dsa-split-weighted--v-gutter) var(--dsa-split-weighted--h-gutter);
|
|
29
|
+
}
|
|
30
|
+
.l-split-weighted--sticky {
|
|
31
|
+
position: relative;
|
|
32
|
+
}
|
|
33
|
+
.l-split-weighted--sticky .l-split-weighted__sticky-container {
|
|
34
|
+
position: sticky;
|
|
35
|
+
top: var(--dsa-split-weighted--sticky-margin, var(--ks-spacing-stack-l));
|
|
36
|
+
height: fit-content;
|
|
37
|
+
}
|
|
38
|
+
.l-split-weighted--desktop-context-first {
|
|
39
|
+
flex-direction: row-reverse;
|
|
40
|
+
}
|
|
41
|
+
.l-split-weighted--mobile-context-first {
|
|
42
|
+
flex-wrap: wrap-reverse;
|
|
43
|
+
}
|
|
44
|
+
.l-split-weighted--v-gutter-small {
|
|
45
|
+
--dsa-split-weighted--v-gutter: var(--dsa-split-weighted--v-gutter_small, var(--ks-spacing-stack-l));
|
|
46
|
+
}
|
|
47
|
+
.l-split-weighted--v-gutter-large {
|
|
48
|
+
--dsa-split-weighted--v-gutter: var(--dsa-split-weighted--v-gutter_large, var(--dsa-content--vertical-spacing));
|
|
49
|
+
}
|
|
50
|
+
.l-split-weighted--v-gutter-none {
|
|
51
|
+
--dsa-split-weighted--v-gutter: 0;
|
|
52
|
+
}
|
|
53
|
+
.l-split-weighted--h-gutter-small {
|
|
54
|
+
--dsa-split-weighted--h-gutter: var(--dsa-split-weighted--h-gutter_small, var(--ks-spacing-inline-m));
|
|
55
|
+
}
|
|
56
|
+
.l-split-weighted--h-gutter-large {
|
|
57
|
+
--dsa-split-weighted--h-gutter: var(--dsa-split-weighted--h-gutter_large, var(--ks-spacing-xxl));
|
|
58
|
+
}
|
|
59
|
+
.l-split-weighted--h-gutter-none {
|
|
60
|
+
--dsa-split-weighted--h-gutter: 0;
|
|
61
|
+
}
|
|
62
|
+
.l-split-weighted__content {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
}
|
|
66
|
+
.l-split-weighted__content .c-button {
|
|
67
|
+
width: fit-content;
|
|
68
|
+
}
|
|
69
|
+
.l-split-weighted__main {
|
|
70
|
+
flex-basis: var(--dsa-split-weighted__main--flex-basis_default, calc(var(--dsa-content--width_default) * 1));
|
|
71
|
+
flex-grow: 1000;
|
|
72
|
+
flex-shrink: 1;
|
|
73
|
+
gap: var(--dsa-split-weighted__main--gutter_default, var(--dsa-content--width_narrow));
|
|
74
|
+
}
|
|
75
|
+
.l-split-weighted__main--width-narrow {
|
|
76
|
+
flex-basis: var(--dsa-split-weighted__main--flex-basis_narrow, var(--dsa-tile--width_large));
|
|
77
|
+
}
|
|
78
|
+
.l-split-weighted__main--width-wide {
|
|
79
|
+
flex-basis: var(--dsa-split-weighted__main--flex-basis_wide, var(--dsa-content--width_default));
|
|
80
|
+
}
|
|
81
|
+
.l-split-weighted__main--gutter-small {
|
|
82
|
+
gap: var(--dsa-split-weighted__main--gutter_small, var(--ks-spacing-stack-s));
|
|
83
|
+
}
|
|
84
|
+
.l-split-weighted__main--gutter-large {
|
|
85
|
+
gap: var(--dsa-split-weighted__main--gutter_large, var(--ks-spacing-stack-l));
|
|
86
|
+
}
|
|
87
|
+
.l-split-weighted__main--gutter-none {
|
|
88
|
+
gap: 0;
|
|
89
|
+
}
|
|
90
|
+
.l-split-weighted__context {
|
|
91
|
+
flex-basis: var(--dsa-split-weighted__context--flex-basis_default, var(--dsa-tile--width_medium));
|
|
92
|
+
flex-grow: 1;
|
|
93
|
+
gap: var(--dsa-split-weighted__context--gutter_default, var(--ks-spacing-stack-s));
|
|
94
|
+
}
|
|
95
|
+
.l-split-weighted__context--width-narrow {
|
|
96
|
+
flex-basis: var(--dsa-split-weighted__context--flex-basis_narrow, var(--dsa-tile--width_small));
|
|
97
|
+
}
|
|
98
|
+
.l-split-weighted__context--width-wide {
|
|
99
|
+
flex-basis: var(--dsa-split-weighted__context--flex-basis_wide, var(--dsa-tile--width_large));
|
|
100
|
+
}
|
|
101
|
+
.l-split-weighted__context--gutter-small {
|
|
102
|
+
gap: var(--dsa-split-weighted__context--gutter_small, var(--ks-spacing-stack-xs));
|
|
103
|
+
}
|
|
104
|
+
.l-split-weighted__context--gutter-large {
|
|
105
|
+
gap: var(--dsa-split-weighted__context--gutter_large, var(--ks-spacing-stack-m));
|
|
106
|
+
}
|
|
107
|
+
.l-split-weighted__context--gutter-none {
|
|
108
|
+
gap: 0;
|
|
109
|
+
}
|