hds-web 1.22.7 → 1.22.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/dist/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Cards/StoryCard/storyxl.js +10 -10
- package/src/styles/tailwind.css +4 -0
package/package.json
CHANGED
@@ -16,16 +16,16 @@ export default function StoryCardXL(props) {
|
|
16
16
|
}
|
17
17
|
{props.brandImageURL &&
|
18
18
|
props.brandImageAlt && (
|
19
|
-
|
20
|
-
<img src={props.brandImageURL} alt={props.brandImageAlt} className="
|
19
|
+
<div className="tb-l:flex hidden -ml-2 justify-start">
|
20
|
+
<img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[64px]" />
|
21
21
|
</div>
|
22
22
|
)
|
23
23
|
|
24
24
|
}
|
25
25
|
{props.title &&
|
26
26
|
(
|
27
|
-
<div className="flex pt-
|
28
|
-
|
27
|
+
<div className="flex pt-6 flex-col gap-6 tb-l:max-w-[547px] ">
|
28
|
+
<Typography textStyle='h3' className='text-neutral-1000 tb-l:block hidden min-h-[144px] overflow-clip'>{props.title}</Typography>
|
29
29
|
{props.heroList &&
|
30
30
|
(
|
31
31
|
<div>
|
@@ -33,10 +33,10 @@ export default function StoryCardXL(props) {
|
|
33
33
|
{props.heroList.map((value, index) => (
|
34
34
|
<div key={index} className='flex gap-5'>
|
35
35
|
<Icon
|
36
|
-
height='tb:h-8 tb:w-8 h-6 w-6'
|
37
|
-
variant={value.iconVariant}
|
38
|
-
strokeClass={value.strokeClass ?? 'stroke-neutral-800'}
|
39
|
-
|
36
|
+
height='tb:h-8 tb:w-8 h-6 w-6'
|
37
|
+
variant={value.iconVariant}
|
38
|
+
strokeClass={value.strokeClass ?? 'stroke-neutral-800'}
|
39
|
+
/>
|
40
40
|
<Typography
|
41
41
|
textStyle='sub2' className='text-neutral-700' >
|
42
42
|
{value.title}
|
@@ -95,8 +95,8 @@ export default function StoryCardXL(props) {
|
|
95
95
|
<div className="tb-l:hidden pb-6">
|
96
96
|
{props.brandImageURL &&
|
97
97
|
props.brandImageAlt && (
|
98
|
-
|
99
|
-
|
98
|
+
<div className="pb-1 -ml-1 ">
|
99
|
+
<img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[40px]" />
|
100
100
|
</div>
|
101
101
|
)
|
102
102
|
}
|