diff options
| author | Md Saban <45597394+mdsaban@users.noreply.github.com> | 2024-06-22 21:20:14 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-22 16:50:14 +0100 |
| commit | ccfff6b1954030a273b0612f3772ec00a82422c8 (patch) | |
| tree | 29b9c9ce9828ead27ff09aa5ac3b1e7698c87fd8 /apps/web/components/ui | |
| parent | 16f21bf9ee747a4fc8fd235eee5c0348d355aae2 (diff) | |
| download | karakeep-ccfff6b1954030a273b0612f3772ec00a82422c8.tar.zst | |
fix(web): Fix save action on empty card. Fixes #225 (#243)
* fix: Empty item save action
* fix: resolve comments
* chore: prettier
Diffstat (limited to 'apps/web/components/ui')
| -rw-r--r-- | apps/web/components/ui/info-tooltip.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/web/components/ui/info-tooltip.tsx b/apps/web/components/ui/info-tooltip.tsx index eeace885..0254aa80 100644 --- a/apps/web/components/ui/info-tooltip.tsx +++ b/apps/web/components/ui/info-tooltip.tsx @@ -21,7 +21,11 @@ export default function InfoTooltip({ <Tooltip> <TooltipTrigger asChild> {variant === "tip" ? ( - <Info className={cn("cursor-pointer", className)} size={size} /> + <Info + color="#494949" + className={cn("cursor-pointer", className)} + size={size} + /> ) : ( <HelpCircle className={cn("cursor-pointer", className)} size={size} /> )} |
