hds-web 1.41.6 → 1.41.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/package.json
CHANGED
@@ -35,7 +35,7 @@ export default function FlyoutB(props) {
|
|
35
35
|
<div className="flex items-start lg:pt-2">
|
36
36
|
{
|
37
37
|
props.cardDetailsArray ? (
|
38
|
-
<div className="flex items-start gap-3">
|
38
|
+
<div className="tb:flex items-start gap-3">
|
39
39
|
{
|
40
40
|
props.cardDetailsArray.map((card, index) => (
|
41
41
|
<a href={card.btnCTA}>
|
@@ -161,7 +161,7 @@ export default function V3Header(props) {
|
|
161
161
|
animate={{ opacity: 1 }}
|
162
162
|
transition={{ ease: "easeInOut", duration: 0.1 }}
|
163
163
|
className={
|
164
|
-
"absolute
|
164
|
+
"absolute -left-[137px] z-[2] transform " +
|
165
165
|
(dropdownVisibility[0] ? "-left-[137px] " : "") +
|
166
166
|
(dropdownVisibility[1] ? "-left-[218px]" : "") +
|
167
167
|
(dropdownVisibility[3] ? "-left-[50px] " : "")
|
package/src/styles/tailwind.css
CHANGED
@@ -2108,10 +2108,6 @@ select{
|
|
2108
2108
|
min-width: 48px;
|
2109
2109
|
}
|
2110
2110
|
|
2111
|
-
.min-w-\[505px\]{
|
2112
|
-
min-width: 505px;
|
2113
|
-
}
|
2114
|
-
|
2115
2111
|
.min-w-\[56px\]{
|
2116
2112
|
min-width: 56px;
|
2117
2113
|
}
|
@@ -12127,6 +12123,10 @@ select{
|
|
12127
12123
|
min-width: 400px;
|
12128
12124
|
}
|
12129
12125
|
|
12126
|
+
.tb-l\:min-w-\[505px\]{
|
12127
|
+
min-width: 505px;
|
12128
|
+
}
|
12129
|
+
|
12130
12130
|
.tb-l\:min-w-\[550px\]{
|
12131
12131
|
min-width: 550px;
|
12132
12132
|
}
|
@@ -12135,10 +12135,6 @@ select{
|
|
12135
12135
|
min-width: 700px;
|
12136
12136
|
}
|
12137
12137
|
|
12138
|
-
.tb-l\:min-w-\[505px\]{
|
12139
|
-
min-width: 505px;
|
12140
|
-
}
|
12141
|
-
|
12142
12138
|
.tb-l\:max-w-7xl{
|
12143
12139
|
max-width: 80rem;
|
12144
12140
|
}
|