Refresh app theme and update dependencies
This commit is contained in:
@@ -154,10 +154,10 @@ export function TaskDetailModal({ isOpen, taskId, onClose }: TaskDetailModalProp
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<span className={item.state === 'active'
|
||||
? 'text-[11px] uppercase tracking-[0.12em] text-[#9fffcf]'
|
||||
? 'text-[11px] uppercase tracking-[0.12em] text-[color:var(--accent)]'
|
||||
: item.state === 'completed'
|
||||
? 'text-[11px] uppercase tracking-[0.12em] text-[color:var(--terminal-muted)]'
|
||||
: 'text-[11px] uppercase tracking-[0.12em] text-[#6f8791]'}
|
||||
: 'text-[11px] uppercase tracking-[0.12em] text-[#7f8994]'}
|
||||
>
|
||||
{item.state}
|
||||
</span>
|
||||
|
||||
@@ -50,7 +50,7 @@ export function TaskNotificationsTrigger({
|
||||
>
|
||||
{unreadCount > 0 ? <BellRing className="size-4" /> : <Bell className="size-4" />}
|
||||
{unreadCount > 0 ? (
|
||||
<span className="absolute -right-1.5 -top-1.5 inline-flex min-w-[1.15rem] items-center justify-center rounded-full bg-[color:var(--accent)] px-1 text-[10px] font-semibold text-[#00241d]">
|
||||
<span className="absolute -right-1.5 -top-1.5 inline-flex min-w-[1.15rem] items-center justify-center rounded-full bg-[color:var(--accent)] px-1 text-[10px] font-semibold text-[#16181c]">
|
||||
{unreadCount > 99 ? '99+' : unreadCount}
|
||||
</span>
|
||||
) : null}
|
||||
|
||||
Reference in New Issue
Block a user