From 331eec1d0817cbac67f33628fd65b318727afe46 Mon Sep 17 00:00:00 2001 From: WaLLy3K Date: Fri, 22 Sep 2017 12:33:29 +1000 Subject: [PATCH] Fix height of .navbar * Black bar appears underneath .logo due to .navbar's `min-height` stretching to 51px, seemingly caused by #541 --- style/pi-hole.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style/pi-hole.css b/style/pi-hole.css index 952c1edf..58375b31 100644 --- a/style/pi-hole.css +++ b/style/pi-hole.css @@ -4,6 +4,7 @@ * * This file is copyright under the latest version of the EUPL. * Please see LICENSE file for your rights under this license. */ + .small-box { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ @@ -40,6 +41,6 @@ a.lookatme { #all-queries tbody { word-wrap: break-word; } -.main-header .logo { - height: 51px; +.main-header>.navbar { + height: 50px; }