Skip to content

Commit

Permalink
Merge pull request #163 from jerboa88/27-design-project-page
Browse files Browse the repository at this point in the history
27 design project page
  • Loading branch information
jerboa88 authored Jul 28, 2024
2 parents 9d5f5ea + f044b87 commit c6e91f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/pill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div key={text} {...classNameProps}>
<span className="text-sm">{text}</span>
{text}
</div>
);
}
4 changes: 2 additions & 2 deletions src/components/project-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export function ProjectCard({ repo }: Props) {
/>
</div>
<div className="flex flex-row justify-center w-full">
<div className="flex flex-col justify-center p-8 px-10 h-full rounded-2xl z-16 text-wrap">
<SubsectionHeading className="my-4 font-semibold">
<div className="flex flex-col justify-center gap-4 p-10 h-full rounded-2xl z-16 text-wrap">
<SubsectionHeading className="font-semibold">
{repo.name}
</SubsectionHeading>
<span className="text-wrap">{repo.description}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/timeline-entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function TimelineEntry({ role }: Props) {
<div className="p-10">
<div className="flex flex-row justify-between items-center mb-8">
<div className="flex flex-col">
<SubsectionHeading className="mt-0 mr-2 mb-4">
<SubsectionHeading className="mr-2 mb-4">
{role.title}
</SubsectionHeading>
<div className="flex flex-row items-center">
Expand Down

0 comments on commit c6e91f7

Please sign in to comment.