Adjust body padding-top for taskbar

taskbar is placed *above* content using a `padding-top: 3em;` rule
Currently, in regular case, padding-top is too large and leaves ~4/5px between the
taskbar and the content.
This fixes it by using a `calc()` rule to eliminate this extra space
This commit is contained in:
renaud gaudin 2020-11-04 11:44:59 +00:00
parent 0f8caba3a5
commit 52da58a294
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ label[for=kiwixsearchbox] {
} }
body { body {
padding-top: 3em !important; padding-top: calc(3em - 5px) !important;
} }
/* Try to fix buggy stuff in jquery-ui autocomplete */ /* Try to fix buggy stuff in jquery-ui autocomplete */