@eclass/ui-kit 1.59.3 → 1.59.5

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,6 +10590,10 @@ 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 {
10594
10598
  const mainElement = document.querySelector(".main");
10595
10599
  if (!mainElement)
@@ -10610,6 +10614,10 @@ const useHideBackgroundOnMobile = (isOpen) => {
10610
10614
  const viewContainer2 = document.getElementById("ViewContainer");
10611
10615
  if (viewContainer2) {
10612
10616
  viewContainer2.style.display = "";
10617
+ const footer = document.getElementById("Footer");
10618
+ if (footer) {
10619
+ footer.style.display = "";
10620
+ }
10613
10621
  } else {
10614
10622
  const mainElement = document.querySelector(".main");
10615
10623
  if (mainElement) {
@@ -10879,7 +10887,7 @@ const UserDropdown = ({
10879
10887
  ">div": {
10880
10888
  left: isMobile ? "0 !important" : "auto",
10881
10889
  position: isMobile ? "fixed !important" : "absolute",
10882
- top: isMobile ? "52px !important" : "auto",
10890
+ top: isMobile ? "56px !important" : "auto",
10883
10891
  bottom: isMobile ? "0 !important" : "auto",
10884
10892
  transform: isMobile ? "none !important" : "auto",
10885
10893
  width: isMobile ? "100% !important" : "auto"
@@ -10908,7 +10916,7 @@ const UserDropdown = ({
10908
10916
  borderRadius: !isMobile ? "10px" : "0",
10909
10917
  bg: vars("colors-neutral-white"),
10910
10918
  ">button, >a": {
10911
- borderBottom: isMobile ? `solid 1px ${vars("colors-neutral-platinum")}` : "none"
10919
+ borderBottom: isMobile ? `solid 1px ${vars("colors-neutral-platinum")}` : void 0
10912
10920
  }
10913
10921
  },
10914
10922
  ".css-r6z5ec": {