hds-web 1.37.6 → 1.37.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/Footers/v3Footer.js +4 -9
- package/src/styles/tailwind.css +5 -0
package/package.json
CHANGED
@@ -136,7 +136,7 @@ export default function V3Footer(props) {
|
|
136
136
|
<div key={index} className="min-w-[130px] db-s:min-w-fit">
|
137
137
|
<Typography
|
138
138
|
textStyle="body3c-semi-bold"
|
139
|
-
className={isDarkMode ? "text-neutral-
|
139
|
+
className={isDarkMode ? "text-neutral-400" : "text-neutral-600"}
|
140
140
|
>
|
141
141
|
{footerLink.title}
|
142
142
|
</Typography>
|
@@ -146,7 +146,7 @@ export default function V3Footer(props) {
|
|
146
146
|
textStyle="body3"
|
147
147
|
className={
|
148
148
|
isDarkMode
|
149
|
-
? "text-neutral-
|
149
|
+
? "text-neutral-400 mt-2 tb:mt-4 hover:text-neutral-600"
|
150
150
|
: "text-neutral-600 mt-2 tb:mt-4 hover:text-neutral-1000"
|
151
151
|
}
|
152
152
|
>
|
@@ -177,12 +177,7 @@ export default function V3Footer(props) {
|
|
177
177
|
<a href="https://status.hasura.io/" className="">
|
178
178
|
<div className=" bg-neutral-0 rounded-full shadow hover:shadow-lg transition-all duration-300 px-4 py-2 inline-flex justify-center items-center">
|
179
179
|
<div className="w-4 h-4 bg-green-400 rounded-full mr-2"></div>
|
180
|
-
<Typography
|
181
|
-
textStyle="body3"
|
182
|
-
className={
|
183
|
-
isDarkMode ? "text-neutral-0" : "text-neutral-1000"
|
184
|
-
}
|
185
|
-
>
|
180
|
+
<Typography textStyle="body3" className={"text-neutral-1000"}>
|
186
181
|
{isItems?.status.description}
|
187
182
|
</Typography>
|
188
183
|
</div>
|
@@ -194,7 +189,7 @@ export default function V3Footer(props) {
|
|
194
189
|
textStyle="body3c"
|
195
190
|
className={
|
196
191
|
isDarkMode
|
197
|
-
? "text-neutral-
|
192
|
+
? "text-neutral-400 pt-4 tb-m:pt-0"
|
198
193
|
: "text-neutral-600 pt-4 tb-m:pt-0"
|
199
194
|
}
|
200
195
|
>
|
package/src/styles/tailwind.css
CHANGED
@@ -10207,6 +10207,11 @@ select{
|
|
10207
10207
|
color: rgb(229 231 235 / var(--tw-text-opacity));
|
10208
10208
|
}
|
10209
10209
|
|
10210
|
+
.hover\:text-neutral-600:hover{
|
10211
|
+
--tw-text-opacity: 1;
|
10212
|
+
color: rgb(77 87 97 / var(--tw-text-opacity));
|
10213
|
+
}
|
10214
|
+
|
10210
10215
|
.hover\:shadow:hover{
|
10211
10216
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
10212
10217
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|