From 806482150313803daef4efeed592b2c646d2df9c Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 28 Jun 2026 15:19:32 -0500 Subject: [PATCH] app_shell tweak --- src/transcription/ui/components/app_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transcription/ui/components/app_shell.py b/src/transcription/ui/components/app_shell.py index f8e2c23..4cf531a 100644 --- a/src/transcription/ui/components/app_shell.py +++ b/src/transcription/ui/components/app_shell.py @@ -53,7 +53,7 @@ def render_navigation_header(*, current_path: str | None = None) -> None: with ( ui.header(elevated=True).props("bordered").classes("bg-dark text-white q-px-sm q-py-xs"), ui.row().classes("w-full items-center justify-end q-gutter-xs"), - ui.element("div").classes("w-full grid grid-cols-2 gap-2 sm:flex sm:justify-end sm:gap-2"), + ui.element("div").classes("w-full grid grid-cols-2 gap-2 sm:flex sm:justify-start sm:gap-2"), ): for label, path, icon in NAV_ITEMS: _render_nav_button(label=label, path=path, icon=icon, current_path=normalized_path)