diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index 4bf50edf..12844720 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -134,7 +134,7 @@ } .header-notifications { - @apply absolute right-[3px] h-1.5 w-1.5 rounded-full bg-destructive; + @apply absolute right-[0px] top-[-4px] h-1 w-1 rounded-full bg-destructive; } .header-menu-bar { diff --git a/frontend/src/components/layout-wrapper.tsx b/frontend/src/components/layout-wrapper.tsx index 58b8f003..4827e6ee 100644 --- a/frontend/src/components/layout-wrapper.tsx +++ b/frontend/src/components/layout-wrapper.tsx @@ -72,11 +72,7 @@ export function LayoutWrapper({ children }: { children: React.ReactNode }) { onClick={toggleMenu} className="relative" > - {activeTasks.length > 0 ? ( - - ) : ( - - )} + {activeTasks.length > 0 && (
)} diff --git a/frontend/src/components/task-notification-menu.tsx b/frontend/src/components/task-notification-menu.tsx index bc2794da..2208545a 100644 --- a/frontend/src/components/task-notification-menu.tsx +++ b/frontend/src/components/task-notification-menu.tsx @@ -1,7 +1,7 @@ "use client" import { useState } from 'react' -import { Bell, BellRing, CheckCircle, XCircle, Clock, Loader2, ChevronDown, ChevronUp, X } from 'lucide-react' +import { Bell, CheckCircle, XCircle, Clock, Loader2, ChevronDown, ChevronUp, X } from 'lucide-react' import { Button } from '@/components/ui/button' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' @@ -124,11 +124,7 @@ export function TaskNotificationMenu() {
- {activeTasks.length > 0 ? ( - - ) : ( - - )} +

Tasks

{isFetching && (