Skip to content

Commit 5d73f1f

Browse files
committed
Improve blog readability
1 parent a1b1693 commit 5d73f1f

6 files changed

Lines changed: 6 additions & 7 deletions

File tree

src/components/layout/Footer.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ const year = new Date().getFullYear();
88
class="text-muted mt-auto flex w-full flex-col items-center justify-center gap-y-2 pt-20 pb-4 text-center align-top font-semibold sm:flex-row sm:justify-between sm:text-xs"
99
>
1010
<div class="me-0 sm:me-4">
11-
&copy; {siteConfig.author}
12-
{year}.<span class="inline-block">&nbsp;{siteConfig.title}</span>
11+
&copy; {siteConfig.author} {year}.
1312
</div>
1413
<nav aria-label="Footer" class="sm:divide-muted flex gap-x-2 sm:gap-x-0 sm:divide-x">
1514
{

src/layouts/Base.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const {
2222
<ThemeProvider />
2323
</head>
2424
<body
25-
class="bg-global-bg text-global-text mx-auto flex min-h-screen max-w-3xl flex-col px-4 pt-16 font-mono text-sm font-normal antialiased sm:px-8"
25+
class="bg-global-bg text-global-text mx-auto flex min-h-screen max-w-5xl flex-col px-4 pt-16 font-sans text-base font-normal antialiased sm:px-8"
2626
>
2727
<SkipLink />
2828
<Header />

src/layouts/BlogPost.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const readingTime: string = remarkPluginFrontmatter.readingTime;
3131
<div class="flex flex-col gap-10 lg:flex-row lg:items-start lg:justify-between">
3232
{!!headings.length && <TOC headings={headings} />}
3333
<div
34-
class="prose prose-sm prose-headings:font-semibold prose-headings:text-accent-2 prose-headings:before:absolute prose-headings:before:-ms-4 prose-headings:before:text-muted prose-headings:hover:before:text-accent sm:prose-headings:before:content-['#'] sm:prose-th:before:content-none"
34+
class="prose max-w-none lg:flex-1 prose-headings:font-semibold prose-headings:text-accent-2 prose-headings:before:absolute prose-headings:before:-ms-4 prose-headings:before:text-muted prose-headings:hover:before:text-accent sm:prose-headings:before:content-['#'] sm:prose-th:before:content-none"
3535
>
3636
<slot />
3737
</div>

src/pages/about.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const meta = {
99

1010
<PageLayout meta={meta}>
1111
<h1 class="title mb-12">About</h1>
12-
<div class="prose prose-sm prose-cactus max-w-none">
12+
<div class="prose prose-cactus max-w-none">
1313
<p>
1414
I'm <a href="https://github.com/leventov">Roman Leventov</a>, a software and systems engineer with 15 years of experience. I've taken part in developing several databases and big data systems, such as <a href="https://druid.apache.org/">Apache Druid</a> and <a href="https://www.stardog.com/">Stardog</a>.
1515
</p>

src/site.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { SiteConfig } from "@/types";
44
export const siteConfig: SiteConfig = {
55
url: "https://convex-in-prod.github.io/",
66
title: "Convex in Prod",
7-
author: "Convex in Prod",
7+
author: "Roman Leventov",
88
description: "Technical notes about running Convex-backed systems in production.",
99
lang: "en-US",
1010
ogLocale: "en_US",

src/styles/blocks/search.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
--pf-border-focus: var(--color-accent-2);
77
--pf-outline-focus: var(--color-accent);
88
--pf-outline-offset: none;
9-
--pf-font: var(--font-mono);
9+
--pf-font: var(--font-sans);
1010
--pf-text: var(--color-global-text);
1111
--pf-text-secondary: var(--color-muted);
1212
--pf-skeleton: var(--color-global-bg);

0 commit comments

Comments
 (0)