diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/TagList.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/ui/imageCard.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx index dd529a8b..185e318e 100644 --- a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx +++ b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx @@ -40,7 +40,7 @@ function renderBookmark(bookmark: ZBookmark) { return ( <Slot key={bookmark.id} - className="border-grey-100 mb-4 border bg-gray-50 duration-300 ease-in hover:border-blue-300 hover:transition-all" + className="border-grey-100 mb-4 border bg-gray-50 duration-300 ease-in hover:shadow-lg hover:transition-all" > {comp} </Slot> diff --git a/apps/web/components/dashboard/bookmarks/TagList.tsx b/apps/web/components/dashboard/bookmarks/TagList.tsx index cb94e5d7..e9161961 100644 --- a/apps/web/components/dashboard/bookmarks/TagList.tsx +++ b/apps/web/components/dashboard/bookmarks/TagList.tsx @@ -27,7 +27,7 @@ export default function TagList({ <Link className={cn( badgeVariants({ variant: "outline" }), - "text-nowrap hover:bg-foreground hover:text-secondary", + "text-nowrap font-normal hover:bg-foreground hover:text-secondary", )} href={`/dashboard/tags/${t.name}`} > diff --git a/apps/web/components/ui/imageCard.tsx b/apps/web/components/ui/imageCard.tsx index e4941733..de059b83 100644 --- a/apps/web/components/ui/imageCard.tsx +++ b/apps/web/components/ui/imageCard.tsx @@ -48,7 +48,7 @@ export function ImageCardTitle({ }: React.HTMLAttributes<HTMLDivElement>) { return ( <div - className={cn("order-first flex-none text-lg font-bold", className)} + className={cn("order-first flex-none text-lg", className)} {...props} /> ); |
