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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.37.9",
3
+ "version": "1.38.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -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={`${class1} block absolute h-[2px] w-[15px] bg-neutral-800 transform transition duration-500 ease-in-out`}
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={`${class3} block absolute h-0.5 w-[15px] bg-neutral-800 transform transition duration-500 ease-in-out`}
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>