Skip to content

Commit 2fbf182

Browse files
kennethreitzclaude
andcommitted
Fix resource detail page mobile viewport scaling
Added missing mobile media query to make max-width elements (description, verse text, intro text) expand to 100% on mobile, preventing the zoomed-out 55% width issue. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b50ea31 commit 2fbf182

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

kjvstudy_org/templates/resource_detail.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@
105105
height: 16px;
106106
}
107107

108+
@media (max-width: 768px) {
109+
.resource-description,
110+
.verse-text,
111+
.intro-text {
112+
max-width: 100%;
113+
}
114+
}
115+
108116
@media print {
109117
.resource-actions {
110118
display: none;

0 commit comments

Comments
 (0)