From 142875d3c7a6ff9de08577def671db9d96a66162 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 5 Dec 2025 14:58:59 -0500 Subject: [PATCH] Make chapter numbers bigger on mobile book view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased from 1.4rem to 2.2rem for better tap targets and readability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/book.html | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/kjvstudy_org/templates/book.html b/kjvstudy_org/templates/book.html index fbf0c69..6401d50 100644 --- a/kjvstudy_org/templates/book.html +++ b/kjvstudy_org/templates/book.html @@ -152,7 +152,8 @@ section ul li strong { /* Mobile optimizations */ @media (max-width: 768px) { .chapters-section h2 + p a { - font-size: 1.4rem; + font-size: 2.2rem; + line-height: 1.6; } .book-meta { @@ -173,12 +174,6 @@ section ul li strong { display: none; } } - -@media (max-width: 480px) { - .chapters-section h2 + p a { - font-size: 1.2rem; - } -}