diff --git a/src/components/pill.tsx b/src/components/pill.tsx
index 7a45749..65683fc 100644
--- a/src/components/pill.tsx
+++ b/src/components/pill.tsx
@@ -12,13 +12,13 @@ interface Props extends PropsWithClassName {
export function Pill({ className, text }: Props) {
const classNameProps = getClassNameProps(
- 'inline-block size-fit px-3 py-2 rounded-lg drop-shadow-sm shadow-emboss',
+ 'inline-block size-fit px-4 py-3 rounded-lg drop-shadow-sm shadow-emboss z-20 text-sm font-button',
className,
);
return (
- {text}
+ {text}
);
}
diff --git a/src/components/project-card.tsx b/src/components/project-card.tsx
index a403070..c7daa73 100644
--- a/src/components/project-card.tsx
+++ b/src/components/project-card.tsx
@@ -51,8 +51,8 @@ export function ProjectCard({ repo }: Props) {
/>
-
-
+
+
{repo.name}
{repo.description}
diff --git a/src/components/timeline-entry.tsx b/src/components/timeline-entry.tsx
index 94f0695..a5b3a60 100644
--- a/src/components/timeline-entry.tsx
+++ b/src/components/timeline-entry.tsx
@@ -37,7 +37,7 @@ export function TimelineEntry({ role }: Props) {