Adjust guide layout width and markdown viewer

This commit is contained in:
planetazuzu 2026-01-19 20:40:37 +01:00
parent a4ec6660ee
commit 9d20d3c163
4 changed files with 5 additions and 4 deletions

View file

@ -381,4 +381,4 @@ const MarkdownViewer = ({
); );
}; };
export default MarkdownViewer; export default MarkdownViewer;

View file

@ -115,4 +115,4 @@ const EmergencyModeOverlay = ({ isOpen, onClose }: EmergencyModeOverlayProps) =>
); );
}; };
export default EmergencyModeOverlay; export default EmergencyModeOverlay;

View file

@ -37,7 +37,8 @@ export const GuideMarkdownViewer = ({ filePath, className = '' }: GuideMarkdownV
<MarkdownViewer <MarkdownViewer
filePath={filePath} filePath={filePath}
showLoading={true} showLoading={true}
className="prose-lg md:max-w-none lg:max-w-none" // Texto grande y ancho completo en desktop/tablet className="prose-lg" // Texto grande y ancho completo en desktop/tablet
fullWidth
/> />
</div> </div>
</div> </div>

View file

@ -27,7 +27,7 @@ export const GuideLayout = ({ children, onSearchClick, onMenuClick }: GuideLayou
/> />
<main className="pt-14 pb-8 flex-1"> <main className="pt-14 pb-8 flex-1">
<div className="container max-w-2xl mx-auto py-6"> <div className="container max-w-2xl md:max-w-3xl lg:max-w-7xl mx-auto py-6">
<div className="mb-4"> <div className="mb-4">
<GuideModeBadge /> <GuideModeBadge />
</div> </div>