@eclass/ui-kit 1.59.4 → 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.
@@ -10590,7 +10590,15 @@ const useHideBackgroundOnMobile = (isOpen) => {
10590
10590
  const viewContainer = document.getElementById("ViewContainer");
10591
10591
  if (viewContainer) {
10592
10592
  viewContainer.style.display = isOpen ? "none" : "";
10593
+ const footer = document.getElementById("Footer");
10594
+ if (footer) {
10595
+ footer.style.display = isOpen ? "none" : "";
10596
+ }
10593
10597
  } else {
10598
+ const browse = document.querySelector(".browse");
10599
+ if (browse) {
10600
+ browse.style.display = isOpen ? "none" : "";
10601
+ }
10594
10602
  const mainElement = document.querySelector(".main");
10595
10603
  if (!mainElement)
10596
10604
  return;
@@ -10610,7 +10618,15 @@ const useHideBackgroundOnMobile = (isOpen) => {
10610
10618
  const viewContainer2 = document.getElementById("ViewContainer");
10611
10619
  if (viewContainer2) {
10612
10620
  viewContainer2.style.display = "";
10621
+ const footer = document.getElementById("Footer");
10622
+ if (footer) {
10623
+ footer.style.display = "";
10624
+ }
10613
10625
  } else {
10626
+ const browse = document.querySelector(".browse");
10627
+ if (browse) {
10628
+ browse.style.display = "";
10629
+ }
10614
10630
  const mainElement = document.querySelector(".main");
10615
10631
  if (mainElement) {
10616
10632
  const firstChild = mainElement.firstElementChild;
@@ -10908,6 +10924,8 @@ const UserDropdown = ({
10908
10924
  borderRadius: !isMobile ? "10px" : "0",
10909
10925
  bg: vars("colors-neutral-white"),
10910
10926
  ">button, >a": {
10927
+ borderTop: "none",
10928
+ borderInline: "none",
10911
10929
  borderBottom: isMobile ? `solid 1px ${vars("colors-neutral-platinum")}` : void 0
10912
10930
  }
10913
10931
  },