Skip to content

Commit 7811a05

Browse files
committed
Merge remote-tracking branch 'base/main'
2 parents 31e50a1 + 11d2e29 commit 7811a05

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/app/groups/recent-group-list-card.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ export function RecentGroupListCard({
5858

5959
return (
6060
<li key={group.id}>
61-
<Button variant="outline" className="h-fit w-full py-3" asChild>
61+
<Button
62+
variant="secondary"
63+
className="h-fit w-full py-3 rounded-lg border bg-card shadow-sm"
64+
asChild
65+
>
6266
<div
6367
className="text-base"
6468
onClick={() => router.push(`/groups/${group.id}`)}

src/app/groups/recent-group-list.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ function GroupList({
155155
setState: (state: SetStateAction<RecentGroupsState>) => void
156156
}) {
157157
return (
158-
<ul className="grid grid-cols-1 gap-2 sm:grid-cols-3">
158+
<ul className="grid gap-2 sm:grid-cols-2">
159159
{groups.map((group) => (
160160
<RecentGroupListCard
161161
key={group.id}

0 commit comments

Comments
 (0)