Skip to content

Commit 779dc7b

Browse files
adjusted padding for tag list and home
1 parent 1c44dfa commit 779dc7b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/components/ui/tag-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function TagList({ tags }: TagListProps) {
1010
return null;
1111
}
1212
return (
13-
<div className="flex flex-wrap gap-2">
13+
<div className="flex flex-wrap gap-2 py-2">
1414
{tags.map((tag) => (
1515
<span key={tag.id} className="rounded-full bg-muted px-3 py-1 text-sm">
1616
{tag.name}

client/src/pages/home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Home() {
2525
{!isLoading &&
2626
events?.map((event) => (
2727
<Card key={event.id}>
28-
<CardHeader>
28+
<CardHeader className="p-3">
2929
<CardTitle>{event.event_name}</CardTitle>
3030
<CardDescription>{event.event_location}</CardDescription>
3131
</CardHeader>

0 commit comments

Comments
 (0)