hds-web 1.3.8 → 1.4.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/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +3 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/HDS/components/BadgesCaption/badges.js +2 -2
- package/src/HDS/components/Cards/Misc/talkcard2.js +1 -1
- package/src/HDS/components/Carousels/carousel.js +1 -1
- package/src/styles/tailwind.css +12 -0
package/package.json
CHANGED
@@ -55,14 +55,14 @@ export default function Badge({
|
|
55
55
|
>
|
56
56
|
{leftIconVariant && leftIconVariant !== 'none' && (
|
57
57
|
<div className='mr-1'>
|
58
|
-
<Icon height={'h-4 w-4'} variant={leftIconVariant} strokeColor={leftIconColor} strokeClass={HDSColor(leftIconColorClass)} />
|
58
|
+
<Icon height={'h-4 w-4 stroke-[1.5px]'} variant={leftIconVariant} strokeColor={leftIconColor} strokeClass={HDSColor(leftIconColorClass)} />
|
59
59
|
</div>
|
60
60
|
)}
|
61
61
|
<Typography textStyle='body3c-medium'>{children}</Typography>
|
62
62
|
|
63
63
|
{rightIconVariant && rightIconVariant !== 'none' && (
|
64
64
|
<div className='ml-1'>
|
65
|
-
<Icon height={'h-4'} variant={rightIconVariant} strokeColor={rightIconColor} rightIconColorClass={HDSColor(rightIconColorClass)} />
|
65
|
+
<Icon height={'h-4 w-4 stroke-[1.5px]'} variant={rightIconVariant} strokeColor={rightIconColor} rightIconColorClass={HDSColor(rightIconColorClass)} />
|
66
66
|
</div>
|
67
67
|
)}
|
68
68
|
</button>
|
@@ -38,7 +38,7 @@ export default function TalkCard2(props) {
|
|
38
38
|
}
|
39
39
|
|
40
40
|
</div>
|
41
|
-
<div className="tb-l:w-[520px]
|
41
|
+
<div className="tb-l:w-[380px] db:w-[520px] h-full flex flex-col tb:justify-between">
|
42
42
|
<div>
|
43
43
|
<Typography className='my-2 text-blue-800' textStyle='h5'>{props.title}</Typography>
|
44
44
|
{props.para &&
|
package/src/styles/tailwind.css
CHANGED
@@ -8798,6 +8798,14 @@ select {
|
|
8798
8798
|
width: 100%;
|
8799
8799
|
}
|
8800
8800
|
|
8801
|
+
.tb-l\:w-\[456px\] {
|
8802
|
+
width: 456px;
|
8803
|
+
}
|
8804
|
+
|
8805
|
+
.tb-l\:w-\[380px\] {
|
8806
|
+
width: 380px;
|
8807
|
+
}
|
8808
|
+
|
8801
8809
|
.tb-l\:min-w-\[400px\] {
|
8802
8810
|
min-width: 400px;
|
8803
8811
|
}
|
@@ -8992,6 +9000,10 @@ select {
|
|
8992
9000
|
width: 100%;
|
8993
9001
|
}
|
8994
9002
|
|
9003
|
+
.db\:w-\[520px\] {
|
9004
|
+
width: 520px;
|
9005
|
+
}
|
9006
|
+
|
8995
9007
|
.db\:min-w-\[625px\] {
|
8996
9008
|
min-width: 625px;
|
8997
9009
|
}
|