@eclass/ui-kit 1.59.4 → 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) {