From 087a555812a31b2aea6f9e369bcc1e41ec47e4b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Balet?= Date: Wed, 20 Jul 2022 21:57:17 +0200 Subject: [PATCH] add- scss/variables : --item-font-weight I've added the `--item-font-weight` variable to let us make those text being bold `600` --- angular-code-input/src/lib/code-input.component.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/angular-code-input/src/lib/code-input.component.scss b/angular-code-input/src/lib/code-input.component.scss index 3c51b71..463152e 100644 --- a/angular-code-input/src/lib/code-input.component.scss +++ b/angular-code-input/src/lib/code-input.component.scss @@ -11,6 +11,7 @@ --item-shadow-focused: 0px 1px 5px rgba(221, 221, 221, 1); --item-border-radius: 5px; --item-background: transparent; + --item-font-weight: 300; --color: #171516; display: flex; @@ -41,6 +42,7 @@ background: var(--item-background); text-align: center; font-size: inherit; + font-weight: var(--item-font-weight); border: var(--item-border); border-bottom: var(--item-border-bottom); border-radius: var(--item-border-radius);