fix: prose content overflow on mobile — add overflow-x-auto

This commit is contained in:
Fringg
2026-04-24 13:51:08 +03:00
parent 3ef54adb3e
commit 596f638cdd

View File

@@ -271,7 +271,7 @@ export default function InfoPageView() {
{/* Page content - sanitized with DOMPurify (strict allowlist) */}
<div
className="prose max-w-none lg:max-w-3xl"
className="prose max-w-none overflow-x-auto lg:max-w-3xl"
dangerouslySetInnerHTML={{ __html: sanitizedContent }}
/>
</div>