From bae3b595eee2957c89c7ae2b9fc83e5a4d89543f Mon Sep 17 00:00:00 2001 From: Tom Ootes Date: Tue, 15 Jul 2025 14:07:10 +0200 Subject: [PATCH 1/2] fix: change font-size for article P and UL > LI elements --- src/css/custom.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index d62b7685..ba008b93 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -521,8 +521,18 @@ html { /* Prevent some unordered-list-items from having a margin */ .theme-doc-markdown ul li p { + background-color: red; margin-bottom: 0; margin-top: 0; + +} + +.theme-doc-markdown p { +font-size: 1.2rem; +} + +.theme-doc-markdown ul li, ol li { + font-size: 1.2rem; } .pagination-nav__link--next { From b6f7f1cb3a93af7ee86318e77bbe182c763de2c5 Mon Sep 17 00:00:00 2001 From: Tom Ootes Date: Tue, 15 Jul 2025 14:09:53 +0200 Subject: [PATCH 2/2] fix: remove testing class --- src/css/custom.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/css/custom.css b/src/css/custom.css index ba008b93..a4b195fb 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -521,10 +521,8 @@ html { /* Prevent some unordered-list-items from having a margin */ .theme-doc-markdown ul li p { - background-color: red; margin-bottom: 0; margin-top: 0; - } .theme-doc-markdown p {