Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@
"react-dom": "^19.2.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.16"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19"
}
}
2 changes: 1 addition & 1 deletion website/src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const props = Astro.props as Props;
<div class="container grow">
<slot />
</div>
<Footer />
</div>
<Footer />
</body>
</html>
2 changes: 1 addition & 1 deletion website/src/pages/articles/[...slug]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const data = article.data;
<Layout
title={data.title}
>
<article class="prose prose-lg mx-auto my-8 px-4 dark:prose-invert">
<article class="prose prose-lg mx-auto my-8 px-4">
<header>
<h1>{data.title}</h1>
<p class="text-sm text-gray-500">
Expand Down
8 changes: 4 additions & 4 deletions website/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const sortedArticles = articles.sort((a, b) => b.data.date.getTime() - a.data.da
.filter((article) => !article.data.tags?.includes('sig-updates'))
.slice(0, 4)
.map((article) => (
<li>
<a href={article.fullSlug} class="hover:underline">
<li class="prose">
<a href={article.fullSlug} class="no-underline hover:underline">
<span class="font-headline font-bold text-3xl">
{article.data.title}
</span>
Expand Down Expand Up @@ -40,8 +40,8 @@ const sortedArticles = articles.sort((a, b) => b.data.date.getTime() - a.data.da
.filter((article) => article.data.tags?.includes('sig-updates'))
.slice(0, 6)
.map((article) => (
<li>
<a href={article.fullSlug} class="hover:underline">
<li class="prose">
<a href={article.fullSlug} class="no-underline hover:underline">
<span class="font-headline font-bold text-xl">{article.data.title}</span>
<span class="block text-sm text-gray-500">
{article.data.byline || (article.data.authors && article.data.authors.length > 0 ? `By ${article.data.authors.length > 1 ? article.data.authors.slice(0, -1).join(', ') + ' and ' + article.data.authors.slice(-1) : article.data.authors[0]}` : "By Anonymous")}
Expand Down
3 changes: 3 additions & 0 deletions website/src/pages/issues/[...volume]/[...issue]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ if (sourcePath) {
class="w-full h-[80vh] border-2 border-gray-300 rounded"
title={`Volume ${data.volume}, Issue ${data.issue} PDF`}
/>
<a href={pdfUrl} class="text-blue-600 underline hover:text-blue-800" download>
Download PDF
</a>
</div>
)}

Expand Down
1 change: 1 addition & 0 deletions website/src/styles/global.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import "tailwindcss";
@plugin "@tailwindcss/typography";

@theme {
--font-headline: 'Bodoni Moda', serif;
Expand Down