mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-08-16 09:52:23 +00:00
update
This commit is contained in:
parent
3695a28b97
commit
56e52fb784
@ -68,3 +68,21 @@
|
||||
color: #1f2937;
|
||||
}
|
||||
|
||||
/* Ajustes globales para el texto y los bordes */
|
||||
.prose {
|
||||
color: #1f2937; /* text-gray-800 */
|
||||
}
|
||||
|
||||
.prose h1,
|
||||
.prose h2,
|
||||
.prose h3,
|
||||
.prose h4,
|
||||
.prose h5,
|
||||
.prose h6 {
|
||||
color: #111827; /* text-gray-900 */
|
||||
}
|
||||
|
||||
* {
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
|
@ -22,9 +22,9 @@ export default async function GuidePage({ params }: { params: { slug: string } }
|
||||
const guideContent = await getGuideContent(params.slug)
|
||||
|
||||
return (
|
||||
<div className="container mx-auto px-4 py-16 max-w-3xl bg-white text-gray-900">
|
||||
<div className="container mx-auto px-4 py-16 max-w-3xl bg-white text-gray-900 border-white">
|
||||
<div
|
||||
className="prose prose-lg prose-gray max-w-none prose-pre:bg-gray-100 prose-pre:text-gray-900"
|
||||
className="prose prose-lg max-w-none prose-pre:bg-gray-100 prose-pre:text-gray-900 prose-headings:text-gray-900 prose-p:text-gray-800"
|
||||
dangerouslySetInnerHTML={{ __html: guideContent }}
|
||||
/>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user