@eclass/ui-kit 1.59.5 → 1.59.6
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/eclass-ui-kit.es.js +10 -0
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +1 -1
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/organisms/User/Dropdown/hooks/useHideBackgroundOnMobile.d.ts.map +1 -1
- package/dist/organisms/User/UserDropdown.d.ts.map +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -10595,6 +10595,10 @@ const useHideBackgroundOnMobile = (isOpen) => {
|
|
|
10595
10595
|
footer.style.display = isOpen ? "none" : "";
|
|
10596
10596
|
}
|
|
10597
10597
|
} else {
|
|
10598
|
+
const browse = document.querySelector(".browse");
|
|
10599
|
+
if (browse) {
|
|
10600
|
+
browse.style.display = isOpen ? "none" : "";
|
|
10601
|
+
}
|
|
10598
10602
|
const mainElement = document.querySelector(".main");
|
|
10599
10603
|
if (!mainElement)
|
|
10600
10604
|
return;
|
|
@@ -10619,6 +10623,10 @@ const useHideBackgroundOnMobile = (isOpen) => {
|
|
|
10619
10623
|
footer.style.display = "";
|
|
10620
10624
|
}
|
|
10621
10625
|
} else {
|
|
10626
|
+
const browse = document.querySelector(".browse");
|
|
10627
|
+
if (browse) {
|
|
10628
|
+
browse.style.display = "";
|
|
10629
|
+
}
|
|
10622
10630
|
const mainElement = document.querySelector(".main");
|
|
10623
10631
|
if (mainElement) {
|
|
10624
10632
|
const firstChild = mainElement.firstElementChild;
|
|
@@ -10916,6 +10924,8 @@ const UserDropdown = ({
|
|
|
10916
10924
|
borderRadius: !isMobile ? "10px" : "0",
|
|
10917
10925
|
bg: vars("colors-neutral-white"),
|
|
10918
10926
|
">button, >a": {
|
|
10927
|
+
borderTop: "none",
|
|
10928
|
+
borderInline: "none",
|
|
10919
10929
|
borderBottom: isMobile ? `solid 1px ${vars("colors-neutral-platinum")}` : void 0
|
|
10920
10930
|
}
|
|
10921
10931
|
},
|