feat(react/widgets): port a few more global menu items

This commit is contained in:
Elian Doran
2025-08-29 01:07:11 +03:00
parent 829f382726
commit e166b97b8f
2 changed files with 42 additions and 5 deletions

View File

@@ -162,7 +162,12 @@ export default class MobileLayout {
.contentSized()
.id("mobile-bottom-bar")
.child(new TabRowWidget().css("height", "40px"))
.child(new FlexContainer("row").class("horizontal").css("height", "53px").child(new LauncherContainer(true)).child(new GlobalMenuWidget(true)).id("launcher-pane"))
.child(new FlexContainer("row")
.class("horizontal")
.css("height", "53px")
.child(new LauncherContainer(true))
.child(<GlobalMenuWidget isHorizontalLayout />)
.id("launcher-pane"))
)
.child(new CloseZenButton());
applyModals(rootContainer);