From 9fb771d048422584c8f7ab9622761d443127ea43 Mon Sep 17 00:00:00 2001
From: Deon Sanchez <69873175+deon-sanchez@users.noreply.github.com>
Date: Thu, 2 Oct 2025 12:38:09 -0600
Subject: [PATCH] Update Navigation component styles for improved layout
consistency and spacing adjustments.
---
frontend/components/navigation.tsx | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/frontend/components/navigation.tsx b/frontend/components/navigation.tsx
index 74046447..423172f5 100644
--- a/frontend/components/navigation.tsx
+++ b/frontend/components/navigation.tsx
@@ -331,7 +331,7 @@ export function Navigation({
return (
-
+
{routes.map(route => (
@@ -373,10 +373,10 @@ export function Navigation({
{/* Chat Page Specific Sections */}
{isOnChatPage && (
-
+
{/* Conversations Section */}
-
-
+
+
Conversations
@@ -392,7 +392,7 @@ export function Navigation({
-
+
{/* Conversations List - grows naturally, doesn't fill all space */}
{loadingNewConversation || isConversationsLoading ? (
@@ -424,7 +424,7 @@ export function Navigation({
{/* Show regular conversations */}
{conversations.length === 0 && !placeholderConversation ? (
-
+
No conversations yet
) : (
@@ -432,7 +432,7 @@ export function Navigation({