From c0b99f43cde4323401410e9fb821b13640b8a144 Mon Sep 17 00:00:00 2001 From: Sam Van Campenhout Date: Wed, 31 Jul 2024 17:53:22 +0200 Subject: [PATCH] Increase the z-index of the main-header component There are some elements that are also using the alpha z-index, which causes issues if elements inside the main header escape its boundaries (for example dropdowns, or drop shadows). By setting it to the beta value, things should work as expected. --- styles/components/_c-main-header.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/components/_c-main-header.scss b/styles/components/_c-main-header.scss index 75863a2e9..a81d6bc5e 100644 --- a/styles/components/_c-main-header.scss +++ b/styles/components/_c-main-header.scss @@ -19,7 +19,7 @@ $au-main-header-divider-rotation: -19deg !default; .au-c-main-header { position: relative; - z-index: var(--au-z-index-alpha); + z-index: var(--au-z-index-beta); display: flex; justify-content: space-between; align-items: center;