hds-web 1.37.9 → 1.38.1
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.es.js +4 -4
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/HDS/components/Headers/v3Header.js +10 -2
package/package.json
CHANGED
@@ -347,11 +347,19 @@ export default function V3Header(props) {
|
|
347
347
|
<div className=" h-5 cursor-pointer">
|
348
348
|
<div
|
349
349
|
aria-hidden="true"
|
350
|
-
className={
|
350
|
+
className={
|
351
|
+
isDarkMode
|
352
|
+
? `${class1} block absolute h-[2px] w-[15px] bg-neutral-400 transform transition duration-500 ease-in-out`
|
353
|
+
: `${class1} block absolute h-[2px] w-[15px] bg-neutral-800 transform transition duration-500 ease-in-out`
|
354
|
+
}
|
351
355
|
></div>
|
352
356
|
<div
|
353
357
|
aria-hidden="true"
|
354
|
-
className={
|
358
|
+
className={
|
359
|
+
isDarkMode
|
360
|
+
? `${class3} block absolute h-0.5 w-[15px] bg-neutral-400 transform transition duration-500 ease-in-out`
|
361
|
+
: `${class3} block absolute h-0.5 w-[15px] bg-neutral-800 transform transition duration-500 ease-in-out`
|
362
|
+
}
|
355
363
|
></div>
|
356
364
|
</div>
|
357
365
|
</motion.div>
|