From 1a9d004e1a8ec4121b6aa5316c5c14f366f00f2f Mon Sep 17 00:00:00 2001 From: Brian Love Date: Tue, 3 Oct 2023 00:48:26 -0400 Subject: [PATCH] Resolve unintentional bolding of Dropdown label Excepted the Dropdown's label from being bolded when within a header. Closes #280 --- github-metrics/src/components/summary.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/github-metrics/src/components/summary.js b/github-metrics/src/components/summary.js index 5b96fc0..35c2edb 100644 --- a/github-metrics/src/components/summary.js +++ b/github-metrics/src/components/summary.js @@ -20,6 +20,10 @@ const styles = { vertical-align: bottom; font-weight: bold; padding-bottom: 16px; + + & .dropdown label { + font-weight: normal; + } `, dropdownContainer: css` display: inline-block;