@kickstartds/ds-agency-premium 1.3.32 → 1.3.34
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/{ImageStoryProps-24e0335c.d.ts → ImageStoryProps-e853e1e7.d.ts} +9 -4
- package/dist/SectionProps-93230a76.d.ts +1 -1
- package/dist/components/button/button.css +12 -0
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/headline/headline.css +2 -2
- package/dist/components/image-story/image-story.css +13 -1
- package/dist/components/image-story/image-story.schema.dereffed.json +19 -9
- package/dist/components/image-story/image-story.schema.json +9 -6
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/image-story/index.js +10 -1
- package/dist/components/nav-main/nav-main.css +3 -3
- package/dist/components/nav-main/nav-toggle.css +2 -2
- package/dist/components/page/page.schema.dereffed.json +19 -9
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +3 -2
- package/dist/components/section/section.schema.dereffed.json +19 -9
- package/dist/components/teaser-card/teaser-card.css +1 -1
- package/dist/global.css +2 -2
- 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
|
@@ -37,13 +37,17 @@ type Buttons = ButtonProps[];
|
|
|
37
37
|
*/
|
|
38
38
|
type ImageSource = string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* The aspect ratio of the image
|
|
41
41
|
*/
|
|
42
|
-
type
|
|
42
|
+
type AspectRatio = "unset" | "square" | "wide" | "landscape";
|
|
43
43
|
/**
|
|
44
44
|
* Image description
|
|
45
45
|
*/
|
|
46
46
|
type AltText = string;
|
|
47
|
+
/**
|
|
48
|
+
* Select a vertical alignment for the image
|
|
49
|
+
*/
|
|
50
|
+
type ImageVerticalAlignment = "center" | "top" | "bottom";
|
|
47
51
|
/**
|
|
48
52
|
* Choose the alginment of the text
|
|
49
53
|
*/
|
|
@@ -64,7 +68,8 @@ interface ImageStoryProps {
|
|
|
64
68
|
*/
|
|
65
69
|
interface Image {
|
|
66
70
|
src?: ImageSource;
|
|
67
|
-
|
|
71
|
+
aspectRatio?: AspectRatio;
|
|
68
72
|
alt?: AltText;
|
|
73
|
+
vAlign?: ImageVerticalAlignment;
|
|
69
74
|
}
|
|
70
|
-
export { ModuleHeadline, LargeHeadline, ModuleSubheadline, ModuleText, Layout, Padding, Buttons, ImageSource,
|
|
75
|
+
export { ModuleHeadline, LargeHeadline, ModuleSubheadline, ModuleText, Layout, Padding, Buttons, ImageSource, AspectRatio, AltText, ImageVerticalAlignment, TextAlignment, ImageStoryProps, Image };
|
|
@@ -8,7 +8,7 @@ import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
|
8
8
|
import { FeaturesProps } from "./FeaturesProps-b05859d6.js";
|
|
9
9
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
10
10
|
import { HeroProps } from "./HeroProps-cf82a16d.js";
|
|
11
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
11
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
12
12
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
13
13
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
14
14
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
--dsa-button--border-radius: var(--ks-border-radius-pill);
|
|
5
5
|
--dsa-button--font-weight: var(--ks-font-weight-semi-bold);
|
|
6
6
|
--dsa-button--text-transform: default;
|
|
7
|
+
--dsa-button_small--font: var(--ks-font-interface-s);
|
|
8
|
+
--dsa-button_medium--font: var(--ks-font-interface-m);
|
|
9
|
+
--dsa-button_large--font: var(--ks-font-interface-l);
|
|
7
10
|
--dsa-button_primary--color: var(--dsa-text-color-on-primary);
|
|
8
11
|
--dsa-button_primary--color_hover: var(--dsa-text-color-on-primary);
|
|
9
12
|
--dsa-button_primary--color_active: var(--dsa-text-color-on-primary);
|
|
@@ -36,6 +39,15 @@
|
|
|
36
39
|
text-transform: var(--dsa-button--text-transform);
|
|
37
40
|
transition-property: box-shadow, transform, background-color, color, border;
|
|
38
41
|
}
|
|
42
|
+
.dsa-button.c-button.c-button--small {
|
|
43
|
+
--c-button--font: var(--dsa-button_small--font, var(--ks-font-interface-s));
|
|
44
|
+
}
|
|
45
|
+
.dsa-button.c-button.c-button--medium {
|
|
46
|
+
--c-button--font: var(--dsa-button_medium--font, var(--ks-font-interface-m));
|
|
47
|
+
}
|
|
48
|
+
.dsa-button.c-button.c-button--large {
|
|
49
|
+
--c-button--font: var(--dsa-button_large--font, var(--ks-font-interface-l));
|
|
50
|
+
}
|
|
39
51
|
.dsa-button.c-button.c-button--solid {
|
|
40
52
|
--c-button--color: var(--dsa-button_primary--color, var(--dsa-text-color-on-primary));
|
|
41
53
|
--c-button--color-hover: var(--dsa-button_primary--color_hover, var(--dsa-text-color-on-primary));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes, FC, PropsWithChildren } from "react";
|
|
3
3
|
import { ButtonProps } from "../../ButtonProps-03ff6d21.js";
|
|
4
|
-
declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & HTMLAttributes<HTMLElement> & import("react").RefAttributes<
|
|
4
|
+
declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & HTMLAttributes<HTMLElement> & import("react").RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
5
5
|
declare const ButtonProvider: FC<PropsWithChildren>;
|
|
6
6
|
export { Button, ButtonProvider };
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
--dsa-headline_h4--font: var(--ks-font-display-m);
|
|
16
16
|
--dsa-headline__p--font: var(--ks-font-copy-m);
|
|
17
17
|
}
|
|
18
|
-
@media (min-width:
|
|
18
|
+
@media (min-width: 48em) {
|
|
19
19
|
:root, :root #root, [ks-inverted], [ks-inverted] #root, #root [ks-inverted], [ks-inverted] #root, [ks-theme], [ks-theme] #root, #root [ks-theme] {
|
|
20
20
|
--dsa-headline_h1__subheadline--font: var(--ks-font-copy-xl);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
@media (min-width:
|
|
23
|
+
@media (min-width: 48em) {
|
|
24
24
|
:root, :root #root, [ks-inverted], [ks-inverted] #root, #root [ks-inverted], [ks-inverted] #root, [ks-theme], [ks-theme] #root, #root [ks-theme] {
|
|
25
25
|
--dsa-headline_h2__subheadline--font: var(--ks-font-copy-l);
|
|
26
26
|
}
|
|
@@ -14,6 +14,18 @@
|
|
|
14
14
|
.c-storytelling.dsa-image-story .c-storytelling__box__content {
|
|
15
15
|
max-width: var(--l-section--content-width-narrow);
|
|
16
16
|
}
|
|
17
|
+
.c-storytelling.dsa-image-story.c-storytelling--three-to-two img {
|
|
18
|
+
aspect-ratio: 3/2;
|
|
19
|
+
}
|
|
20
|
+
.c-storytelling.dsa-image-story.c-storytelling--four-to-three img {
|
|
21
|
+
aspect-ratio: 4/3;
|
|
22
|
+
}
|
|
23
|
+
.c-storytelling.dsa-image-story.c-storytelling--sixteen-to-nine img {
|
|
24
|
+
aspect-ratio: 16/9;
|
|
25
|
+
}
|
|
26
|
+
.c-storytelling.dsa-image-story.c-storytelling--square img {
|
|
27
|
+
aspect-ratio: 1/1;
|
|
28
|
+
}
|
|
17
29
|
.c-storytelling.dsa-image-story .c-rich-text {
|
|
18
30
|
font: var(--dsa-image-story__copy--font, var(--dsa-rich-text--font));
|
|
19
31
|
color: var(--dsa-image-story__copy--color, var(--dsa-rich-text--color));
|
|
@@ -24,7 +36,7 @@
|
|
|
24
36
|
}
|
|
25
37
|
.c-storytelling.dsa-image-story .c-storytelling__image img {
|
|
26
38
|
position: sticky;
|
|
27
|
-
|
|
39
|
+
height: auto;
|
|
28
40
|
}
|
|
29
41
|
.c-storytelling.dsa-image-story.c-storytelling--full {
|
|
30
42
|
--c-storytelling--vertical-padding: 0px;
|
|
@@ -129,23 +129,33 @@
|
|
|
129
129
|
"type": "string",
|
|
130
130
|
"format": "image"
|
|
131
131
|
},
|
|
132
|
-
"
|
|
133
|
-
"title": "Image aspect ratio",
|
|
134
|
-
"description": "Select an aspect ratio to use for cropping and displaying the image",
|
|
132
|
+
"aspectRatio": {
|
|
135
133
|
"type": "string",
|
|
134
|
+
"title": "Aspect Ratio",
|
|
135
|
+
"description": "The aspect ratio of the image",
|
|
136
136
|
"enum": [
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"none"
|
|
137
|
+
"unset",
|
|
138
|
+
"square",
|
|
139
|
+
"wide",
|
|
140
|
+
"landscape"
|
|
142
141
|
],
|
|
143
|
-
"default": "
|
|
142
|
+
"default": "unset"
|
|
144
143
|
},
|
|
145
144
|
"alt": {
|
|
146
145
|
"title": "Alt text",
|
|
147
146
|
"description": "Image description",
|
|
148
147
|
"type": "string"
|
|
148
|
+
},
|
|
149
|
+
"vAlign": {
|
|
150
|
+
"title": "Image vertical alignment",
|
|
151
|
+
"description": "Select a vertical alignment for the image",
|
|
152
|
+
"type": "string",
|
|
153
|
+
"enum": [
|
|
154
|
+
"center",
|
|
155
|
+
"top",
|
|
156
|
+
"bottom"
|
|
157
|
+
],
|
|
158
|
+
"default": "center"
|
|
149
159
|
}
|
|
150
160
|
},
|
|
151
161
|
"additionalProperties": false
|
|
@@ -57,17 +57,20 @@
|
|
|
57
57
|
"type": "string",
|
|
58
58
|
"format": "image"
|
|
59
59
|
},
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"description": "Select an aspect ratio to use for cropping and displaying the image",
|
|
63
|
-
"type": "string",
|
|
64
|
-
"enum": ["4:3", "3:2", "16:9", "1:1", "none"],
|
|
65
|
-
"default": "none"
|
|
60
|
+
"aspectRatio": {
|
|
61
|
+
"$ref": "http://schema.mydesignsystem.com/image.schema.json#/properties/aspectRatio"
|
|
66
62
|
},
|
|
67
63
|
"alt": {
|
|
68
64
|
"title": "Alt text",
|
|
69
65
|
"description": "Image description",
|
|
70
66
|
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"vAlign": {
|
|
69
|
+
"title": "Image vertical alignment",
|
|
70
|
+
"description": "Select a vertical alignment for the image",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"enum": ["center", "top", "bottom"],
|
|
73
|
+
"default": "center"
|
|
71
74
|
}
|
|
72
75
|
},
|
|
73
76
|
"additionalProperties": false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
|
|
4
4
|
declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -15,10 +15,19 @@ const ImageStoryContextDefault = forwardRef(({ headline, largeHeadline = false,
|
|
|
15
15
|
// @ts-expect-error
|
|
16
16
|
value: ButtonGroup, children: jsx(Storytelling, { ...rest, ref: ref, className: classnames("dsa-image-story"), full: padding === false ? true : false, image: {
|
|
17
17
|
source: image?.src,
|
|
18
|
+
ratio: image?.aspectRatio === "square"
|
|
19
|
+
? "1:1"
|
|
20
|
+
: image?.aspectRatio === "wide"
|
|
21
|
+
? "4:3"
|
|
22
|
+
: image?.aspectRatio === "landscape"
|
|
23
|
+
? "16:9"
|
|
24
|
+
: image?.aspectRatio === "unset"
|
|
25
|
+
? "none"
|
|
26
|
+
: "none",
|
|
18
27
|
order: {
|
|
19
28
|
desktopImageLast: layout === "imageLeft" ? false : true,
|
|
20
29
|
},
|
|
21
|
-
vAlign:
|
|
30
|
+
vAlign: image?.vAlign,
|
|
22
31
|
}, box: {
|
|
23
32
|
text: text,
|
|
24
33
|
textAlign: textAlign,
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--dsa-nav-main__link--padding: 0.35em 0;
|
|
17
17
|
--dsa-nav-main--shadow: 50px 0px 50px 50px rgba(0, 0, 0, 0.539);
|
|
18
18
|
}
|
|
19
|
-
@media (min-width:
|
|
19
|
+
@media (min-width: 62em) {
|
|
20
20
|
.dsa-nav-main {
|
|
21
21
|
--dsa-nav-main__link--padding: 0 0.75em;
|
|
22
22
|
--dsa-nav-main__link--font: var(--ks-font-interface-m);
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
.dsa-nav-main.dsa-nav-main--flyout {
|
|
81
81
|
display: none;
|
|
82
82
|
}
|
|
83
|
-
@media (max-width:
|
|
83
|
+
@media (max-width: 62em) {
|
|
84
84
|
.dsa-nav-main.dsa-nav-main--flyout {
|
|
85
85
|
display: block;
|
|
86
86
|
/* critical:start */
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
.dsa-nav-main.dsa-nav-main--topbar {
|
|
139
139
|
display: none;
|
|
140
140
|
}
|
|
141
|
-
@media (min-width:
|
|
141
|
+
@media (min-width: 62em) {
|
|
142
142
|
.dsa-nav-main.dsa-nav-main--topbar {
|
|
143
143
|
display: block;
|
|
144
144
|
/* critical:start */
|
|
@@ -20,7 +20,7 @@ button.dsa-nav-toggle {
|
|
|
20
20
|
transform: translateX(var(--dsa-header--spacing-horizontal));
|
|
21
21
|
--nav-toggle__icon-bar--offset: 14px;
|
|
22
22
|
}
|
|
23
|
-
@media (min-width:
|
|
23
|
+
@media (min-width: 48em) {
|
|
24
24
|
button.dsa-nav-toggle {
|
|
25
25
|
--nav-toggle__icon-bar--offset: 18px;
|
|
26
26
|
}
|
|
@@ -54,7 +54,7 @@ button.dsa-nav-toggle .dsa-nav-toggle__icon {
|
|
|
54
54
|
.dsa-header--floating button.dsa-nav-toggle .dsa-nav-toggle__icon {
|
|
55
55
|
color: var(--nav-toggle_floating--color);
|
|
56
56
|
}
|
|
57
|
-
@media (min-width:
|
|
57
|
+
@media (min-width: 40em) {
|
|
58
58
|
button.dsa-nav-toggle .dsa-nav-toggle__icon {
|
|
59
59
|
transform: scale(0.8) translate(2.5%, 2.5%);
|
|
60
60
|
}
|
|
@@ -986,23 +986,33 @@
|
|
|
986
986
|
"type": "string",
|
|
987
987
|
"format": "image"
|
|
988
988
|
},
|
|
989
|
-
"
|
|
990
|
-
"title": "Image aspect ratio",
|
|
991
|
-
"description": "Select an aspect ratio to use for cropping and displaying the image",
|
|
989
|
+
"aspectRatio": {
|
|
992
990
|
"type": "string",
|
|
991
|
+
"title": "Aspect Ratio",
|
|
992
|
+
"description": "The aspect ratio of the image",
|
|
993
993
|
"enum": [
|
|
994
|
-
"
|
|
995
|
-
"
|
|
996
|
-
"
|
|
997
|
-
"
|
|
998
|
-
"none"
|
|
994
|
+
"unset",
|
|
995
|
+
"square",
|
|
996
|
+
"wide",
|
|
997
|
+
"landscape"
|
|
999
998
|
],
|
|
1000
|
-
"default": "
|
|
999
|
+
"default": "unset"
|
|
1001
1000
|
},
|
|
1002
1001
|
"alt": {
|
|
1003
1002
|
"title": "Alt text",
|
|
1004
1003
|
"description": "Image description",
|
|
1005
1004
|
"type": "string"
|
|
1005
|
+
},
|
|
1006
|
+
"vAlign": {
|
|
1007
|
+
"title": "Image vertical alignment",
|
|
1008
|
+
"description": "Select a vertical alignment for the image",
|
|
1009
|
+
"type": "string",
|
|
1010
|
+
"enum": [
|
|
1011
|
+
"center",
|
|
1012
|
+
"top",
|
|
1013
|
+
"bottom"
|
|
1014
|
+
],
|
|
1015
|
+
"default": "center"
|
|
1006
1016
|
}
|
|
1007
1017
|
},
|
|
1008
1018
|
"additionalProperties": false
|
|
@@ -1619,7 +1619,7 @@
|
|
|
1619
1619
|
"id": "components-image-story--sticky-image-next-to-scrolling-text",
|
|
1620
1620
|
"group": "Components/Image Story",
|
|
1621
1621
|
"name": "StickyImageNextToScrollingText",
|
|
1622
|
-
"code": "<ImageStory\n buttons={[\n {\n disabled: false,\n label: 'Learn More',\n size: 'medium',\n target: '#',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Contact Us',\n size: 'medium',\n target: '#',\n variant: 'secondary'\n }\n ]}\n headline=\"The Sanity & Next.js Experts\"\n image={{\n
|
|
1622
|
+
"code": "<ImageStory\n buttons={[\n {\n disabled: false,\n label: 'Learn More',\n size: 'medium',\n target: '#',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Contact Us',\n size: 'medium',\n target: '#',\n variant: 'secondary'\n }\n ]}\n headline=\"The Sanity & Next.js Experts\"\n image={{\n aspectRatio: 'unset',\n src: 'img/full-shot-different-people-working-together.png',\n vAlign: 'center'\n }}\n largeHeadline\n layout=\"imageLeft\"\n sub=\"Subheadline\"\n text=\"\nHere at Systemics, we bring a range of design system services that can make a difference:\n\n### 1. Design System Consulting\nLet's work side by side to shape a design system strategy that aligns perfectly with your goals. It's not just about tools; it's about guiding principles, stakeholder management und making the right decisions at the right time.\n\n### 2. Design System Creation & Development\nWe'll bring your design system from concept to production, giving you consistent and engaging user experiences across different platforms. We will work together with your digital teams to transfer all complex Figma ideas into code using kickstartDS.\n\n### 3. Headless CMS & Websites\nWe leverage the power of headless CMSs to provide scalable, flexible, and versatile websites that drive your online presence.\n\n### 4. Design System Training\nWe empower your digital teams with the knowledge and skills to manage and evolve your design system effectively.\n\nReady to make your digital journey exceptional?\n \"\n textAlign=\"left\"\n/>",
|
|
1623
1623
|
"args": {
|
|
1624
1624
|
"headline": "The Sanity & Next.js Experts",
|
|
1625
1625
|
"largeHeadline": true,
|
|
@@ -1643,7 +1643,8 @@
|
|
|
1643
1643
|
}
|
|
1644
1644
|
],
|
|
1645
1645
|
"image": {
|
|
1646
|
-
"
|
|
1646
|
+
"aspectRatio": "unset",
|
|
1647
|
+
"vAlign": "center",
|
|
1647
1648
|
"src": "img/full-shot-different-people-working-together.png"
|
|
1648
1649
|
},
|
|
1649
1650
|
"textAlign": "left",
|
|
@@ -972,23 +972,33 @@
|
|
|
972
972
|
"type": "string",
|
|
973
973
|
"format": "image"
|
|
974
974
|
},
|
|
975
|
-
"
|
|
976
|
-
"title": "Image aspect ratio",
|
|
977
|
-
"description": "Select an aspect ratio to use for cropping and displaying the image",
|
|
975
|
+
"aspectRatio": {
|
|
978
976
|
"type": "string",
|
|
977
|
+
"title": "Aspect Ratio",
|
|
978
|
+
"description": "The aspect ratio of the image",
|
|
979
979
|
"enum": [
|
|
980
|
-
"
|
|
981
|
-
"
|
|
982
|
-
"
|
|
983
|
-
"
|
|
984
|
-
"none"
|
|
980
|
+
"unset",
|
|
981
|
+
"square",
|
|
982
|
+
"wide",
|
|
983
|
+
"landscape"
|
|
985
984
|
],
|
|
986
|
-
"default": "
|
|
985
|
+
"default": "unset"
|
|
987
986
|
},
|
|
988
987
|
"alt": {
|
|
989
988
|
"title": "Alt text",
|
|
990
989
|
"description": "Image description",
|
|
991
990
|
"type": "string"
|
|
991
|
+
},
|
|
992
|
+
"vAlign": {
|
|
993
|
+
"title": "Image vertical alignment",
|
|
994
|
+
"description": "Select a vertical alignment for the image",
|
|
995
|
+
"type": "string",
|
|
996
|
+
"enum": [
|
|
997
|
+
"center",
|
|
998
|
+
"top",
|
|
999
|
+
"bottom"
|
|
1000
|
+
],
|
|
1001
|
+
"default": "center"
|
|
992
1002
|
}
|
|
993
1003
|
},
|
|
994
1004
|
"additionalProperties": false
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
--dsa-teaser-card__copy--color: var(--ks-text-color-default);
|
|
24
24
|
--dsa-teaser-card--padding: var(--ks-spacing-inset-l);
|
|
25
25
|
}
|
|
26
|
-
@media (min-width:
|
|
26
|
+
@media (min-width: 48em) {
|
|
27
27
|
.dsa-teaser-card {
|
|
28
28
|
--dsa-teaser-card__topic--font: var(--ks-font-display-s);
|
|
29
29
|
--dsa-teaser-card__copy--font: var(--ks-font-copy-s);
|
package/dist/global.css
CHANGED
|
@@ -314,12 +314,12 @@ h3 {
|
|
|
314
314
|
--dsa-section__content_wide--width: 1440px;
|
|
315
315
|
--dsa-logo--height: 2rem;
|
|
316
316
|
}
|
|
317
|
-
@media (min-width:
|
|
317
|
+
@media (min-width: 48em) {
|
|
318
318
|
:root, :root #root, [ks-inverted], [ks-inverted] #root, #root [ks-inverted], [ks-inverted] #root, [ks-theme], [ks-theme] #root, #root [ks-theme] {
|
|
319
319
|
--dsa-section__content--padding: var(--ks-spacing-inset-xl);
|
|
320
320
|
}
|
|
321
321
|
}
|
|
322
|
-
@media (min-width:
|
|
322
|
+
@media (min-width: 48em) {
|
|
323
323
|
:root, :root #root, [ks-inverted], [ks-inverted] #root, #root [ks-inverted], [ks-inverted] #root, [ks-theme], [ks-theme] #root, #root [ks-theme] {
|
|
324
324
|
--dsa-logo--height: 2.5rem;
|
|
325
325
|
}
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 05 Aug 2024 09:42:11 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root [ks-theme=business] {
|
|
6
6
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -2727,7 +2727,7 @@
|
|
|
2727
2727
|
}
|
|
2728
2728
|
/**
|
|
2729
2729
|
* Do not edit directly
|
|
2730
|
-
* Generated on
|
|
2730
|
+
* Generated on Mon, 05 Aug 2024 09:42:16 GMT
|
|
2731
2731
|
*/
|
|
2732
2732
|
:root [ks-theme=google] {
|
|
2733
2733
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -5458,7 +5458,7 @@
|
|
|
5458
5458
|
}
|
|
5459
5459
|
/**
|
|
5460
5460
|
* Do not edit directly
|
|
5461
|
-
* Generated on
|
|
5461
|
+
* Generated on Mon, 05 Aug 2024 09:42:13 GMT
|
|
5462
5462
|
*/
|
|
5463
5463
|
:root [ks-theme=ngo] {
|
|
5464
5464
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -8459,7 +8459,7 @@
|
|
|
8459
8459
|
}
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Do not edit directly
|
|
8462
|
-
* Generated on
|
|
8462
|
+
* Generated on Mon, 05 Aug 2024 09:42:18 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED