From a134ed7bf9cbbad489652044cb921757ceb4af69 Mon Sep 17 00:00:00 2001 From: Miguel Carvajal Date: Wed, 18 Nov 2020 10:10:43 +0100 Subject: [PATCH] Panels: fix positioning of the header title (#29167) the menu toggle icon is now absolute positioned and it no longer affects the centering of the menu title --- public/sass/components/_panel_header.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/sass/components/_panel_header.scss b/public/sass/components/_panel_header.scss index 4a96298da6b..69869238ed0 100644 --- a/public/sass/components/_panel_header.scss +++ b/public/sass/components/_panel_header.scss @@ -60,6 +60,8 @@ $panel-header-no-title-zindex: 1; } .panel-menu-toggle { + position: absolute; + top: calc(50% - 9px); color: $text-color-weak; cursor: pointer; margin: 2px 0 0 2px;