qpp-style 9.41.4 → 9.41.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.
@@ -83,7 +83,10 @@ const HeaderUI = ({
83
83
  isIESupportPage={isIESupportPage}
84
84
  isDevPre={isDevPre}
85
85
  >
86
- <nav aria-label="Primary navigation" hidden={!isMobileMenuExpanded}>
86
+ <nav
87
+ aria-label="Primary navigation"
88
+ hidden={!isMobileMenuExpanded && windowWidth < 768}
89
+ >
87
90
  <ul className="navigation-menu">
88
91
  <HeaderAccountMenu isDevPre isLoginEnabled={isLoginEnabled} />
89
92
  </ul>
@@ -104,7 +107,10 @@ const HeaderUI = ({
104
107
  handleClick={() => setIsMobileMenuExpanded(!isMobileMenuExpanded)}
105
108
  isMobileMenuExpanded={isMobileMenuExpanded}
106
109
  />
107
- <nav aria-label="Primary navigation" hidden={!isMobileMenuExpanded}>
110
+ <nav
111
+ aria-label="Primary navigation"
112
+ hidden={!isMobileMenuExpanded && windowWidth < 768}
113
+ >
108
114
  <ul className="navigation-menu navigation-new-style">
109
115
  {content.map((header) => (
110
116
  <HeaderMenuItem