hds-web 1.21.6 → 1.21.7
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 +5 -5
- package/src/HDS/components/Carousels/customerStories.js +2 -2
- package/src/styles/tailwind.css +46 -0
package/package.json
CHANGED
@@ -24,8 +24,8 @@ export default function StoryCardXL(props) {
|
|
24
24
|
}
|
25
25
|
{props.title &&
|
26
26
|
(
|
27
|
-
<div className="flex pt-6 flex-col gap-6 tb-l:max-w-[547px]">
|
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 max-h-[144px] overflow-clip'>{props.title}</Typography>
|
29
29
|
{props.heroList &&
|
30
30
|
(
|
31
31
|
<div>
|
@@ -63,7 +63,7 @@ export default function StoryCardXL(props) {
|
|
63
63
|
props.heroImageAlt) ?
|
64
64
|
(
|
65
65
|
<>
|
66
|
-
<div className="flex mt-4 tb:mt-0 justify-start tb-l:justify-end tb-l:pt-20 tb:max-w-[600px]">
|
66
|
+
<div className="flex mt-4 tb:mt-0 justify-center tb:justify-start tb-l:justify-end tb-l:pt-20 tb:max-w-[600px]">
|
67
67
|
<img
|
68
68
|
src={props.heroImageURL}
|
69
69
|
alt={props.heroImageAlt}
|
@@ -92,8 +92,8 @@ export default function StoryCardXL(props) {
|
|
92
92
|
<div className="tb-l:hidden pb-6">
|
93
93
|
{props.brandImageURL &&
|
94
94
|
props.brandImageAlt && (
|
95
|
-
|
96
|
-
|
95
|
+
<div className="pb-4 ">
|
96
|
+
<img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[28px]" />
|
97
97
|
</div>
|
98
98
|
)
|
99
99
|
}
|
@@ -160,10 +160,10 @@ export default function Carousels ({ components, variants }) {
|
|
160
160
|
</motion.button>
|
161
161
|
</div>
|
162
162
|
</div>
|
163
|
-
<div className='
|
163
|
+
<div className='tb-l:hidden flex overflow-x-scroll pb-10 pt-4 tb:pb-16 tb:pt-10 px-4 gap-2 mb-m:gap-4 tb-m:gap-4'>
|
164
164
|
{components.map((component, index) => (
|
165
165
|
<React.Fragment key={index}>
|
166
|
-
<div className='tb-l:min-w-[700px] tb:min-w-[500px] mb-s:min-w-[350px]'>
|
166
|
+
<div className='tb-l:min-w-[700px] tb:min-w-[500px] mb-s:min-w-[350px] min-w-[300px]'>
|
167
167
|
{component}
|
168
168
|
</div>
|
169
169
|
</React.Fragment>
|
package/src/styles/tailwind.css
CHANGED
@@ -1696,6 +1696,20 @@ select{
|
|
1696
1696
|
height: auto;
|
1697
1697
|
}
|
1698
1698
|
|
1699
|
+
.h-\[518px\]{
|
1700
|
+
height: 518px;
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
.h-\[200px\]{
|
1704
|
+
height: 200px;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
.h-fit{
|
1708
|
+
height: -webkit-fit-content;
|
1709
|
+
height: -moz-fit-content;
|
1710
|
+
height: fit-content;
|
1711
|
+
}
|
1712
|
+
|
1699
1713
|
.max-h-\[181px\]{
|
1700
1714
|
max-height: 181px;
|
1701
1715
|
}
|
@@ -1736,6 +1750,18 @@ select{
|
|
1736
1750
|
max-height: 40px;
|
1737
1751
|
}
|
1738
1752
|
|
1753
|
+
.max-h-\[518px\]{
|
1754
|
+
max-height: 518px;
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
.max-h-\[144px\]{
|
1758
|
+
max-height: 144px;
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
.max-h-\[200px\]{
|
1762
|
+
max-height: 200px;
|
1763
|
+
}
|
1764
|
+
|
1739
1765
|
.min-h-\[12px\]{
|
1740
1766
|
min-height: 12px;
|
1741
1767
|
}
|
@@ -1768,6 +1794,10 @@ select{
|
|
1768
1794
|
min-height: 64px;
|
1769
1795
|
}
|
1770
1796
|
|
1797
|
+
.min-h-\[144px\]{
|
1798
|
+
min-height: 144px;
|
1799
|
+
}
|
1800
|
+
|
1771
1801
|
.\!w-full{
|
1772
1802
|
width: 100% !important;
|
1773
1803
|
}
|
@@ -2000,6 +2030,18 @@ select{
|
|
2000
2030
|
min-width: 100%;
|
2001
2031
|
}
|
2002
2032
|
|
2033
|
+
.min-w-\[350px\]{
|
2034
|
+
min-width: 350px;
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.min-w-\[240px\]{
|
2038
|
+
min-width: 240px;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.min-w-\[300px\]{
|
2042
|
+
min-width: 300px;
|
2043
|
+
}
|
2044
|
+
|
2003
2045
|
.max-w-2xl{
|
2004
2046
|
max-width: 42rem;
|
2005
2047
|
}
|
@@ -10660,6 +10702,10 @@ select{
|
|
10660
10702
|
max-height: 25.25rem;
|
10661
10703
|
}
|
10662
10704
|
|
10705
|
+
.tb\:max-h-\[144px\]{
|
10706
|
+
max-height: 144px;
|
10707
|
+
}
|
10708
|
+
|
10663
10709
|
.tb\:min-h-\[245px\]{
|
10664
10710
|
min-height: 245px;
|
10665
10711
|
}
|