From 7773f9521a6f94d045fc5ffb665894f56570ea8e Mon Sep 17 00:00:00 2001 From: Codex Date: Thu, 23 Apr 2026 12:24:09 -0500 Subject: [PATCH] Refactor navbar to Bootstrap structure --- frontend/src/App.tsx | 62 ++++++++++++++++++++++++----------------- frontend/src/styles.css | 11 -------- 2 files changed, 36 insertions(+), 37 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index b1f0e98..a84d8c6 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -249,22 +249,24 @@ function ShellLayout() { }, [showTeamSelectionModal]); return ( -
+
{showNavbar ? ( -
-
-
+
-
+ ) : null}
diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 73f7c9b..dfe46be 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -136,17 +136,6 @@ select { margin-left: 0.15rem; } -.site-brand-copy { - display: grid; - gap: 0.16rem; -} - -.current-page-label { - color: rgba(255, 255, 255, 0.68); - font-size: 0.72rem; - line-height: 1.2; -} - .clip-list-add-button .bootstrap-icon { font-size: 1.2rem; }