hds-web 1.38.1 → 1.38.3
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
@@ -146,7 +146,7 @@ export default function V3Footer(props) {
|
|
146
146
|
textStyle="body3"
|
147
147
|
className={
|
148
148
|
isDarkMode
|
149
|
-
? "text-neutral-400 mt-2 tb:mt-4 hover:text-neutral-
|
149
|
+
? "text-neutral-400 mt-2 tb:mt-4 hover:text-neutral-0"
|
150
150
|
: "text-neutral-600 mt-2 tb:mt-4 hover:text-neutral-1000"
|
151
151
|
}
|
152
152
|
>
|
@@ -162,6 +162,7 @@ export default function V3Footer(props) {
|
|
162
162
|
<div className="flex items-center justify-center pt-10 tb-m:pt-0 pb-4 tb-m:pb-0 tb-m:justify-start">
|
163
163
|
{socialShare.map((icon, index) => (
|
164
164
|
<a
|
165
|
+
key={index}
|
165
166
|
href={icon.linkUrl}
|
166
167
|
className={
|
167
168
|
"mx-2 tb-l:mx-4 first:ml-0 last:mr-0 [&>svg>path]:fill-neutral-400 [&>svg>path]:hover:fill-neutral-600 " +
|
@@ -123,7 +123,7 @@ export default function V3Header(props) {
|
|
123
123
|
<Typography
|
124
124
|
className={
|
125
125
|
isDarkMode
|
126
|
-
? "text-neutral-0 hover:text-blue-
|
126
|
+
? "text-neutral-0 hover:text-blue-400"
|
127
127
|
: "hover:text-blue-600"
|
128
128
|
}
|
129
129
|
textStyle="body3c-medium"
|
@@ -177,7 +177,7 @@ export default function V3Header(props) {
|
|
177
177
|
<Typography
|
178
178
|
className={
|
179
179
|
isDarkMode
|
180
|
-
? "text-neutral-0 hover:text-blue-
|
180
|
+
? "text-neutral-0 hover:text-blue-400 cursor-pointer"
|
181
181
|
: "hover:text-blue-600 cursor-pointer"
|
182
182
|
}
|
183
183
|
textStyle="body3c-medium"
|
@@ -193,7 +193,7 @@ export default function V3Header(props) {
|
|
193
193
|
<Typography
|
194
194
|
className={
|
195
195
|
isDarkMode
|
196
|
-
? "text-neutral-0 hover:text-blue-
|
196
|
+
? "text-neutral-0 hover:text-blue-400 cursor-pointer"
|
197
197
|
: "hover:text-blue-600 cursor-pointer"
|
198
198
|
}
|
199
199
|
textStyle="body3c-medium"
|
@@ -383,7 +383,7 @@ export default function V3Header(props) {
|
|
383
383
|
textStyle="body3c-medium"
|
384
384
|
className={
|
385
385
|
isDarkMode
|
386
|
-
? "text-neutral-0 hover:text-blue-
|
386
|
+
? "text-neutral-0 hover:text-blue-400"
|
387
387
|
: "text-neutral-800 hover:text-blue-600"
|
388
388
|
}
|
389
389
|
>
|
package/src/styles/tailwind.css
CHANGED
@@ -2044,6 +2044,10 @@ select{
|
|
2044
2044
|
width: 100vw;
|
2045
2045
|
}
|
2046
2046
|
|
2047
|
+
.min-w-\[103px\]{
|
2048
|
+
min-width: 103px;
|
2049
|
+
}
|
2050
|
+
|
2047
2051
|
.min-w-\[11\.5rem\]{
|
2048
2052
|
min-width: 11.5rem;
|
2049
2053
|
}
|
@@ -2118,10 +2122,6 @@ select{
|
|
2118
2122
|
min-width: 100%;
|
2119
2123
|
}
|
2120
2124
|
|
2121
|
-
.min-w-\[103px\]{
|
2122
|
-
min-width: 103px;
|
2123
|
-
}
|
2124
|
-
|
2125
2125
|
.max-w-2xl{
|
2126
2126
|
max-width: 42rem;
|
2127
2127
|
}
|
@@ -10206,14 +10206,14 @@ select{
|
|
10206
10206
|
color: rgb(0 6 21 / var(--tw-text-opacity));
|
10207
10207
|
}
|
10208
10208
|
|
10209
|
-
.hover\:text-neutral-
|
10209
|
+
.hover\:text-neutral-600:hover{
|
10210
10210
|
--tw-text-opacity: 1;
|
10211
|
-
color: rgb(
|
10211
|
+
color: rgb(77 87 97 / var(--tw-text-opacity));
|
10212
10212
|
}
|
10213
10213
|
|
10214
|
-
.hover\:text-
|
10214
|
+
.hover\:text-blue-400:hover{
|
10215
10215
|
--tw-text-opacity: 1;
|
10216
|
-
color: rgb(
|
10216
|
+
color: rgb(128 163 255 / var(--tw-text-opacity));
|
10217
10217
|
}
|
10218
10218
|
|
10219
10219
|
.hover\:shadow:hover{
|