From da80fb7086839df1ddd43d26e6e1a6cba5905851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucija=20Fradeli=C4=87?= Date: Fri, 8 Nov 2024 17:41:59 +0100 Subject: [PATCH 1/2] made header clickable --- apps/web/src/components/Header/Header.module.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/components/Header/Header.module.scss b/apps/web/src/components/Header/Header.module.scss index a8dbeaee..8ed451f5 100644 --- a/apps/web/src/components/Header/Header.module.scss +++ b/apps/web/src/components/Header/Header.module.scss @@ -1,6 +1,7 @@ .header { width: calc(100% - 2 * 32px); position: fixed; + pointer-events: none; top: 32px; left: 32px; display: grid; From 9a61a53fe75fc448b13a5186bd59d4f0db1fe231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucija=20Fradeli=C4=87?= Date: Fri, 8 Nov 2024 21:36:10 +0100 Subject: [PATCH 2/2] fixed button and hamburger clickability --- apps/web/src/components/Header/Header.module.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/web/src/components/Header/Header.module.scss b/apps/web/src/components/Header/Header.module.scss index 8ed451f5..7f87451d 100644 --- a/apps/web/src/components/Header/Header.module.scss +++ b/apps/web/src/components/Header/Header.module.scss @@ -69,6 +69,7 @@ button { margin-left: auto; + pointer-events: auto; } .hamburger { @@ -83,6 +84,8 @@ top: 0; left: 0; width: 100%; + pointer-events: none; + .text:nth-of-type(2), .button { @@ -95,6 +98,7 @@ .hamburger { display: block; + pointer-events: auto; } } }