Merged in feat/SW-3520-update-footer-ui-and-footer-link (pull request #2910)
feat(SW-3520): Updated the footer * feat(SW-3520): Updated links to route to scandic web * feat(SW-3520): Updated the footer with language switcher * feat(SW-3520): Updated the Contact-us link and removed double slash Approved-by: Anton Gunnarsson
This commit is contained in:
@@ -30,7 +30,10 @@ export function MobileMenu({ children }: React.PropsWithChildren) {
|
||||
type="button"
|
||||
className={`${styles.hamburger} ${isOpen ? styles.isExpanded : ""}`}
|
||||
aria-label={isOpen ? closeMsg : openMsg}
|
||||
onPress={() => setIsOpen(!isOpen)}
|
||||
onPress={() => {
|
||||
window.scrollTo(0, 0)
|
||||
setIsOpen(!isOpen)
|
||||
}}
|
||||
>
|
||||
<span className={styles.bar} />
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user