Commit 8617954d authored by joola's avatar joola Committed by Annabel Dunstone Gray

Replace useless divs with flex layout in navbar

Notable changes proposed by @pslaughter
parent 553c9f3c
...@@ -565,15 +565,14 @@ ...@@ -565,15 +565,14 @@
} }
.navbar-empty { .navbar-empty {
justify-content: center;
height: $header-height; height: $header-height;
background: $white-light; background: $white-light;
border-bottom: 1px solid $white-normal; border-bottom: 1px solid $white-normal;
.mx-auto { .tanuki-logo,
.tanuki-logo, .brand-header-logo {
img { max-height: 100%;
height: 36px;
}
} }
} }
......
...@@ -28,7 +28,7 @@ module AppearancesHelper ...@@ -28,7 +28,7 @@ module AppearancesHelper
def brand_header_logo def brand_header_logo
if current_appearance&.header_logo? if current_appearance&.header_logo?
image_tag current_appearance.header_logo_path image_tag current_appearance.header_logo_path, class: 'brand-header-logo'
else else
render 'shared/logo.svg' render 'shared/logo.svg'
end end
......
%header.navbar.fixed-top.navbar-empty %header.navbar.fixed-top.navbar-empty
.container = brand_header_logo
.mx-auto
= brand_header_logo
---
title: Fix overlapping empty-header logo
merge_request: 24868
author: Jonas L.
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment