From c1f25aceee433dc1cb9bdcf7ffb15b74a2a7cd8d Mon Sep 17 00:00:00 2001 From: Alex Krawiec Date: Thu, 31 Oct 2024 15:40:00 -0700 Subject: [PATCH 1/3] Add CSS rule to fix color of bold links --- src/components/docPage/type.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/docPage/type.scss b/src/components/docPage/type.scss index 387a0792875936..7e724a40d1b5ca 100644 --- a/src/components/docPage/type.scss +++ b/src/components/docPage/type.scss @@ -130,6 +130,10 @@ font-weight: 500; } + a strong { + color: var(--accent); + } + .anchorlink, .anchorlink.before { display: flex; From a60ecb697a1a87e3b6dfca4983e6e4316a0cc7e1 Mon Sep 17 00:00:00 2001 From: Alex Krawiec Date: Fri, 1 Nov 2024 13:29:03 -0700 Subject: [PATCH 2/3] Small syntactic refactor --- src/components/docPage/type.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/docPage/type.scss b/src/components/docPage/type.scss index 7e724a40d1b5ca..b2522e6824e7b5 100644 --- a/src/components/docPage/type.scss +++ b/src/components/docPage/type.scss @@ -111,6 +111,10 @@ color: var(--accent); font-weight: normal; + strong { + color: var(--accent); + } + img { display: inline-block; } @@ -130,9 +134,6 @@ font-weight: 500; } - a strong { - color: var(--accent); - } .anchorlink, .anchorlink.before { From d97cc07302d6699d14455562a21a88b8f4566aa9 Mon Sep 17 00:00:00 2001 From: Alex Krawiec Date: Fri, 1 Nov 2024 13:30:21 -0700 Subject: [PATCH 3/3] Small syntactic re-refactor --- src/components/docPage/type.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/docPage/type.scss b/src/components/docPage/type.scss index b2522e6824e7b5..c38dbaf73a31bb 100644 --- a/src/components/docPage/type.scss +++ b/src/components/docPage/type.scss @@ -134,7 +134,6 @@ font-weight: 500; } - .anchorlink, .anchorlink.before { display: flex;