aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-15 23:44:59 +0000
committerMohamedBassem <me@mbassem.com>2024-03-15 23:44:59 +0000
commit8f9c9036afbd036688cd2805d27328895926a8d9 (patch)
treed3a6ebfa423be9a9ee5f605062a5f7f886526470 /apps/web
parentd9a68a2cc6238b37497cdbf00eb156b4c911cdbe (diff)
downloadkarakeep-8f9c9036afbd036688cd2805d27328895926a8d9.tar.zst
ui(web): Change the text in cards to be less aggressive
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx2
-rw-r--r--apps/web/components/dashboard/bookmarks/TagList.tsx2
-rw-r--r--apps/web/components/ui/imageCard.tsx2
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}
/>
);