diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-31 17:59:29 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-31 19:27:25 +0100 |
| commit | cb8754bc09bf8495fb7f5ee744f61e06ac6af5d4 (patch) | |
| tree | 44564c43f51c80f2d146ecfa0bf119cf7ecb4e97 /apps | |
| parent | 61a7b4a681971ead7d0bbeb5f612e7bb335f55b2 (diff) | |
| download | karakeep-cb8754bc09bf8495fb7f5ee744f61e06ac6af5d4.tar.zst | |
fix(web): Fix the color of the info pill in the all tags page
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/app/dashboard/tags/page.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/dashboard/tags/page.tsx b/apps/web/app/dashboard/tags/page.tsx index 2ba1074c..7afe691d 100644 --- a/apps/web/app/dashboard/tags/page.tsx +++ b/apps/web/app/dashboard/tags/page.tsx @@ -42,7 +42,7 @@ export default async function TagsPage() { }; return ( - <div className="space-y-3 rounded-md border bg-background p-4"> + <div className="space-y-4 rounded-md border bg-background p-4"> <span className="text-2xl">All Tags</span> <Separator /> @@ -68,7 +68,7 @@ export default async function TagsPage() { <TooltipProvider delayDuration={0}> <Tooltip> <TooltipTrigger asChild> - <Info className="text-gray-100" size={20} /> + <Info size={20} /> </TooltipTrigger> <TooltipContent> <p>Tags that were only attached automatically (by AI)</p> |
