From 56e52fb784526e21d5dac9b29921236dce49dbfd Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sat, 15 Feb 2025 13:01:40 +0100 Subject: [PATCH] update --- web/app/globals.css | 18 ++++++++++++++++++ web/app/guides/[slug]/page.tsx | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/web/app/globals.css b/web/app/globals.css index 908e351..1381bfd 100644 --- a/web/app/globals.css +++ b/web/app/globals.css @@ -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; +} + diff --git a/web/app/guides/[slug]/page.tsx b/web/app/guides/[slug]/page.tsx index 755cf8c..03b07d3 100644 --- a/web/app/guides/[slug]/page.tsx +++ b/web/app/guides/[slug]/page.tsx @@ -22,9 +22,9 @@ export default async function GuidePage({ params }: { params: { slug: string } } const guideContent = await getGuideContent(params.slug) return ( -
+