hds-web 1.23.4 → 1.23.5
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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/HDS/components/Cards/Menu/flyoutA.js +1 -1
- package/src/HDS/components/Cards/StoryCard/storyxl.js +1 -1
- package/src/styles/tailwind.css +20 -0
package/package.json
CHANGED
@@ -21,7 +21,7 @@ export default function FlyoutA(props) {
|
|
21
21
|
<div className="mb-9">
|
22
22
|
</div>
|
23
23
|
)}
|
24
|
-
<div className={` tb:tb:grid tb:tb:grid-cols-1 tb:gap-x-4 tb:min-w-[
|
24
|
+
<div className={` tb:tb:grid tb:tb:grid-cols-1 tb:gap-x-4 tb:min-w-[186px] `}>
|
25
25
|
{childArray && childArray.map((item) => (
|
26
26
|
<div
|
27
27
|
key={item.name}
|
@@ -6,7 +6,7 @@ import { Icon } from "../../common-components";
|
|
6
6
|
export default function StoryCardXL(props) {
|
7
7
|
return (
|
8
8
|
<>
|
9
|
-
<div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[742px]">
|
9
|
+
<div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[742px] tb-l:min-h-[518px]">
|
10
10
|
|
11
11
|
<div className="flex flex-col tb-l:pl-20 tb-l:pt-14 tb-l:pb-14">
|
12
12
|
{
|
package/src/styles/tailwind.css
CHANGED
@@ -10892,6 +10892,18 @@ select{
|
|
10892
10892
|
min-width: 500px;
|
10893
10893
|
}
|
10894
10894
|
|
10895
|
+
.tb\:min-w-\[185px\]{
|
10896
|
+
min-width: 185px;
|
10897
|
+
}
|
10898
|
+
|
10899
|
+
.tb\:min-w-\[200px\]{
|
10900
|
+
min-width: 200px;
|
10901
|
+
}
|
10902
|
+
|
10903
|
+
.tb\:min-w-\[186px\]{
|
10904
|
+
min-width: 186px;
|
10905
|
+
}
|
10906
|
+
|
10895
10907
|
.tb\:max-w-\[17rem\]{
|
10896
10908
|
max-width: 17rem;
|
10897
10909
|
}
|
@@ -11763,6 +11775,10 @@ select{
|
|
11763
11775
|
min-height: 224px;
|
11764
11776
|
}
|
11765
11777
|
|
11778
|
+
.tb-l\:min-h-\[518px\]{
|
11779
|
+
min-height: 518px;
|
11780
|
+
}
|
11781
|
+
|
11766
11782
|
.tb-l\:w-1\/2{
|
11767
11783
|
width: 50%;
|
11768
11784
|
}
|
@@ -11805,6 +11821,10 @@ select{
|
|
11805
11821
|
min-width: 700px;
|
11806
11822
|
}
|
11807
11823
|
|
11824
|
+
.tb-l\:min-w-\[518px\]{
|
11825
|
+
min-width: 518px;
|
11826
|
+
}
|
11827
|
+
|
11808
11828
|
.tb-l\:max-w-\[1240px\]{
|
11809
11829
|
max-width: 1240px;
|
11810
11830
|
}
|