Skip to content

Commit 4d7d7f7

Browse files
changed buttons to round
1 parent 0dcc13a commit 4d7d7f7

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

client/src/pages/events/[id].tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ export default function EventDetailsPage() {
2525
secondaryAction={
2626
<Button
2727
variant="outline"
28-
className="flex-1"
28+
className="flex-1 rounded-full"
2929
onClick={() => router.back()}
3030
>
3131
Back
3232
</Button>
3333
}
34-
primaryAction={<Button className="flex-1">Join Event</Button>}
34+
primaryAction={
35+
<Button className="flex-1 rounded-full">Join Event</Button>
36+
}
3537
>
3638
<div className="mx-auto max-w-3xl px-4 sm:px-6 lg:px-0">
3739
<div className="relative h-56 w-full overflow-hidden rounded-xl bg-gray-200">

client/src/pages/home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ export default function Home() {
3838
</CardContent>
3939

4040
<CardFooter className="flex-end flex-row justify-center gap-2">
41-
<Button className="w-full">
41+
<Button className="w-full rounded-full">
4242
<Link href={`/events/${event.id}`}>View Details</Link>
4343
</Button>
44-
<Button>Signup</Button>
44+
<Button className="rounded-full">Signup</Button>
4545
</CardFooter>
4646
</Card>
4747
))}

0 commit comments

Comments
 (0)