aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/recent-group-list-card.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-26 16:11:51 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-26 16:11:51 -0500
commit11d2e298e8cc5cac07aa2c60e194bf4460cefb21 (patch)
treedf56eb14685032374e3eddecc7ed8aaaac8fcc37 /src/app/groups/recent-group-list-card.tsx
parent0647000a7700439fa471673d00882386bfb1343f (diff)
Improve recent groups design
Diffstat (limited to 'src/app/groups/recent-group-list-card.tsx')
-rw-r--r--src/app/groups/recent-group-list-card.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/app/groups/recent-group-list-card.tsx b/src/app/groups/recent-group-list-card.tsx
index 7809566..0218fb8 100644
--- a/src/app/groups/recent-group-list-card.tsx
+++ b/src/app/groups/recent-group-list-card.tsx
@@ -58,7 +58,11 @@ export function RecentGroupListCard({
return (
<li key={group.id}>
- <Button variant="outline" className="h-fit w-full py-3" asChild>
+ <Button
+ variant="secondary"
+ className="h-fit w-full py-3 rounded-lg border bg-card shadow-sm"
+ asChild
+ >
<div
className="text-base"
onClick={() => router.push(`/groups/${group.id}`)}