From 14fa687b9cd823e070e46d61ab7226b508204f64 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 23 Nov 2024 09:40:32 +0200 Subject: [PATCH] fix(mobile): width of launcher bar items --- src/public/app/layouts/mobile_layout.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/public/app/layouts/mobile_layout.js b/src/public/app/layouts/mobile_layout.js index a5691ae11..632a4cab0 100644 --- a/src/public/app/layouts/mobile_layout.js +++ b/src/public/app/layouts/mobile_layout.js @@ -120,6 +120,7 @@ export default class MobileLayout { .cssBlock(MOBILE_CSS) .child(new FlexContainer(launcherPaneIsHorizontal ? "row" : "column") .id("launcher-pane") + .class(launcherPaneIsHorizontal ? "horizontal" : "vertical") .css(launcherPaneIsHorizontal ? "height" : "width", "53px") .child(new GlobalMenuWidget(launcherPaneIsHorizontal)) .child(new LauncherContainer(launcherPaneIsHorizontal))