From a6827d558d7610213b335f789231c352788c8298 Mon Sep 17 00:00:00 2001 From: Benjamin Leonard Date: Wed, 25 Oct 2023 17:32:45 +0100 Subject: [PATCH] Fix dupe strong class (#57) * Fix dupe strong class * Fix incorrectly nested style --- components/dist/asciidoc.css | 18 +++++++----------- components/src/assets/asciidoc.css | 18 +++++++----------- 2 files changed, 14 insertions(+), 22 deletions(-) diff --git a/components/dist/asciidoc.css b/components/dist/asciidoc.css index 2809015..dc2b68e 100644 --- a/components/dist/asciidoc.css +++ b/components/dist/asciidoc.css @@ -47,8 +47,9 @@ word-wrap: break-word; } + /* Use semi-bold for strong */ .asciidoc-body strong { - @apply font-[600] text-default; + @apply font-[500] text-default; } .asciidoc-body a strong { @@ -710,6 +711,11 @@ --content-secondary: rgb(0, 0, 0, 0.8); } } + + /* Boosting body text for long text readability */ + .asciidoc-body p { + color: #c8cacb; + } } .changelog-doc.asciidoc-body { @@ -732,14 +738,4 @@ & ol li { @apply mt-0; } - - /* Use semi-bold for strong */ - .asciidoc-body strong { - font-weight: 500; - } - - /* Boosting body text for long text readability */ - .asciidoc-body p { - color: #c8cacb; - } } diff --git a/components/src/assets/asciidoc.css b/components/src/assets/asciidoc.css index 2809015..dc2b68e 100644 --- a/components/src/assets/asciidoc.css +++ b/components/src/assets/asciidoc.css @@ -47,8 +47,9 @@ word-wrap: break-word; } + /* Use semi-bold for strong */ .asciidoc-body strong { - @apply font-[600] text-default; + @apply font-[500] text-default; } .asciidoc-body a strong { @@ -710,6 +711,11 @@ --content-secondary: rgb(0, 0, 0, 0.8); } } + + /* Boosting body text for long text readability */ + .asciidoc-body p { + color: #c8cacb; + } } .changelog-doc.asciidoc-body { @@ -732,14 +738,4 @@ & ol li { @apply mt-0; } - - /* Use semi-bold for strong */ - .asciidoc-body strong { - font-weight: 500; - } - - /* Boosting body text for long text readability */ - .asciidoc-body p { - color: #c8cacb; - } }