From f7e8ab4302d73364f869a55a8532bddecd00ce3d Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 30 Jun 2020 15:22:31 -0500 Subject: [PATCH] Fix layering so logo is clickable (#8320) The CSS I added in #8249 to make the search be properly centred also made the logo unclickable as it was hidden behind the centred element! This makes the logo stay above the search container. --- ui/app/styles/core/navbar.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/app/styles/core/navbar.scss b/ui/app/styles/core/navbar.scss index 9018db8af..840d8d1e9 100644 --- a/ui/app/styles/core/navbar.scss +++ b/ui/app/styles/core/navbar.scss @@ -41,6 +41,10 @@ } } + .navbar-brand { + z-index: $z-gutter; + } + .navbar-end { display: flex; align-items: stretch;