From 427ac70c27c79a8dba7a2a8dec3d703262d92f12 Mon Sep 17 00:00:00 2001 From: mukimovd <41473651-mukimovd@users.noreply.replit.com> Date: Thu, 1 May 2025 22:38:48 +0000 Subject: [PATCH] Enhance the navigation header appearance using Tailwind CSS theme Removes custom theme styles and applies Tailwind CSS theme classes to NavHeader. Replit-Commit-Author: Agent Replit-Commit-Session-Id: cbacfb18-842a-4116-a907-18c0105ad8ec Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/39b5c689-6e8a-4d5a-9792-69cc81a56534/a5b1f5ac-8eda-45e5-b094-ec4681f669ee.jpg --- client/src/components/layout/NavHeader.tsx | 33 +++++++++++----------- client/src/lib/theme.ts | 1 - 2 files changed, 16 insertions(+), 18 deletions(-) delete mode 100644 client/src/lib/theme.ts diff --git a/client/src/components/layout/NavHeader.tsx b/client/src/components/layout/NavHeader.tsx index 7727ed3..b782a80 100644 --- a/client/src/components/layout/NavHeader.tsx +++ b/client/src/components/layout/NavHeader.tsx @@ -3,7 +3,6 @@ import { useTheme } from "@/hooks/use-theme"; import { Search, Moon, Sun, Menu } from "lucide-react"; import { useState } from "react"; import { Button } from "@/components/ui/button"; -import { theme as themeStyles } from "@/lib/theme"; import { DropdownMenu, DropdownMenuContent, @@ -16,23 +15,23 @@ export function NavHeader() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); return ( -
+
- + Tercul @@ -42,7 +41,7 @@ export function NavHeader() { @@ -90,7 +89,7 @@ export function NavHeader() {
{mobileMenuOpen && ( -
+
diff --git a/client/src/lib/theme.ts b/client/src/lib/theme.ts deleted file mode 100644 index ec747fa..0000000 --- a/client/src/lib/theme.ts +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file