Skip to content

Commit c3da878

Browse files
fix(pages): widen blog detail content area with percentage-based max-width (#356)
1 parent 4cc2fe8 commit c3da878

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pages/src/content/blog/en/introducing-ocr-blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Introducing the Open Code Review Blog System
3-
date: 2026-07-01
3+
date: 2026-07-10
44
tags: [announcement, guide]
55
summary: Learn how the Open Code Review blog system works and how you can contribute articles using simple Markdown files managed in GitHub.
66
author: lizhengfeng101

pages/src/content/blog/ja/introducing-ocr-blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Open Code Review ブログシステムの紹介
3-
date: 2026-07-01
3+
date: 2026-07-10
44
tags: [アナウンス, ガイド]
55
summary: Open Code Review ブログシステムの仕組みと、GitHub の Markdown ファイルを使って記事を書く方法を紹介します。
66
author: lizhengfeng101

pages/src/content/blog/zh/introducing-ocr-blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Open Code Review 博客系统介绍
3-
date: 2026-07-01
3+
date: 2026-07-10
44
tags: [公告, 指南]
55
summary: 了解 Open Code Review 博客系统的工作原理,以及如何通过 GitHub 中的 Markdown 文件来撰写和发布文章。
66
author: lizhengfeng101

pages/src/pages/BlogPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const BlogPage: React.FC = () => {
188188
<Navbar />
189189
<div style={{ display: 'flex', justifyContent: 'center', maxWidth: 1440, margin: '0 auto', flex: 1, width: '100%' }}>
190190
{/* Main content */}
191-
<div style={{ flex: 1, minWidth: 0, padding: isMobile ? '32px 20px 80px' : '40px 48px 80px', maxWidth: 820 }}>
191+
<div style={{ flex: 1, minWidth: 0, padding: isMobile ? '32px 20px 80px' : '40px 48px 80px', maxWidth: isMobile ? undefined : '65%' }}>
192192
{/* Back link */}
193193
<button
194194
onClick={() => navigate('/blog')}

0 commit comments

Comments
 (0)