app_shell tweak

This commit is contained in:
John Lancaster
2026-06-28 15:19:32 -05:00
parent 593388ef3a
commit 8064821503
+1 -1
View File
@@ -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)