We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c44dfa commit 779dc7bCopy full SHA for 779dc7b
2 files changed
client/src/components/ui/tag-list.tsx
@@ -10,7 +10,7 @@ export default function TagList({ tags }: TagListProps) {
10
return null;
11
}
12
return (
13
- <div className="flex flex-wrap gap-2">
+ <div className="flex flex-wrap gap-2 py-2">
14
{tags.map((tag) => (
15
<span key={tag.id} className="rounded-full bg-muted px-3 py-1 text-sm">
16
{tag.name}
client/src/pages/home.tsx
@@ -25,7 +25,7 @@ export default function Home() {
25
{!isLoading &&
26
events?.map((event) => (
27
<Card key={event.id}>
28
- <CardHeader>
+ <CardHeader className="p-3">
29
<CardTitle>{event.event_name}</CardTitle>
30
<CardDescription>{event.event_location}</CardDescription>
31
</CardHeader>
0 commit comments