From 19e6d944190b0a4810e492736dfc5862f4596376 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Sat, 17 Aug 2024 14:23:33 -0500 Subject: [PATCH] Set as Relative position, remove extra properties Doesn't need to be Sticky positioning, relative is fine (it is still fixed above the iframe). Allows us to remove a bunch of extra properties. Add a smidgen of padding. --- client/homebrew/brewRenderer/toolBar/toolBar.less | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/homebrew/brewRenderer/toolBar/toolBar.less b/client/homebrew/brewRenderer/toolBar/toolBar.less index cb3f744f1..a216d5df4 100644 --- a/client/homebrew/brewRenderer/toolBar/toolBar.less +++ b/client/homebrew/brewRenderer/toolBar/toolBar.less @@ -1,7 +1,5 @@ .toolBar { - position : sticky; - top : 0; - left : 0; + position : relative; z-index : 1; display : flex; flex-wrap : wrap; @@ -10,7 +8,7 @@ align-items : center; justify-content : center; width : 100%; - height : 30px; + padding: 2px 0; font-family : 'Open Sans', sans-serif; color : white; text-align : center;