From c97038fffd3794fbee67904fe8edea64a08d6b94 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 13 Dec 2025 10:26:25 +0200 Subject: [PATCH] chore(layout): revert breadcrumb row --- apps/client/src/layouts/desktop_layout.tsx | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/apps/client/src/layouts/desktop_layout.tsx b/apps/client/src/layouts/desktop_layout.tsx index ac4590fec..7eda043b0 100644 --- a/apps/client/src/layouts/desktop_layout.tsx +++ b/apps/client/src/layouts/desktop_layout.tsx @@ -82,8 +82,16 @@ export default class DesktopLayout { const titleRow = new FlexContainer("row") .class("title-row") + .cssBlock(".title-row > * { margin: 5px; }") .child() - .child(); + .child() + .optChild(isNewLayout, ) + .child() + .child() + .child() + .child() + .child() + .optChild(isNewLayout, ); const rootContainer = new RootContainer(true) .setParent(appContext) @@ -137,18 +145,6 @@ export default class DesktopLayout { .child( new SplitNoteContainer(() => new NoteWrapperWidget() - .child( - new FlexContainer("row") - .class("breadcrumb-row") - .cssBlock(".breadcrumb-row > * { margin: 5px; }") - .optChild(isNewLayout, ) - .child() - .child() - .child() - .child() - .child() - .optChild(isNewLayout, ) - ) .optChild(!isFloatingTitlebar, titleRow) .optChild(!isNewLayout, ) .optChild(isNewLayout, )