Skip to content

Commit

Permalink
style: separate categories with slashes (addresses #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstadler committed Sep 23, 2024
1 parent 4d56a65 commit 296537a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/publication/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default async function PublicationPage(props: PublicationPageProps) {
return (
<MainContent className="">
<h1 className="font-bold">{pub.title}</h1>
<h2 className="italic">{pub.categories.join(", ")}</h2>
<h2 className="italic">{pub.categories.join(" / ")}</h2>
<div className="flex gap-8">
<PublicationCover className="h-96 grow basis-1/3" publication={pub} />
<div className="grow-[2] basis-2/3">
Expand Down

0 comments on commit 296537a

Please sign in to comment.