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>
This commit is contained in:
2025-12-12 12:51:33 -05:00
parent b50ea3176d
commit 2fbf1822b8
@@ -105,6 +105,14 @@ article {
height: 16px; height: 16px;
} }
@media (max-width: 768px) {
.resource-description,
.verse-text,
.intro-text {
max-width: 100%;
}
}
@media print { @media print {
.resource-actions { .resource-actions {
display: none; display: none;