From b64c078c2e01fd4a5e61ff1567f1f0e7d76e300c Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 13 Jun 2023 19:17:56 +0800 Subject: [PATCH] Use the underline style for all highlights --- packages/web/styles/articleInnerStyling.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/web/styles/articleInnerStyling.css b/packages/web/styles/articleInnerStyling.css index 5d600dd9d..902f255c6 100644 --- a/packages/web/styles/articleInnerStyling.css +++ b/packages/web/styles/articleInnerStyling.css @@ -13,7 +13,9 @@ .highlight { color: var(--colors-highlightText); - background-color: rgb(var(--colors-highlightBackground)); + background-color: rgba(var(--colors-highlightBackground), 0.35); + border-bottom: 2px rgb(var(--colors-highlightBackground)) solid; + border-radius: 2px; cursor: pointer; }