From e3cb3ece45791bbab258515385c97b578a3f2553 Mon Sep 17 00:00:00 2001 From: Isabelle Date: Tue, 10 Mar 2026 17:21:09 +0100 Subject: [PATCH] feat(extra-features): Add border color settings --- .../variables/bootstrap/_components.scss | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/falcon/_dev/css/abstracts/variables/bootstrap/_components.scss b/falcon/_dev/css/abstracts/variables/bootstrap/_components.scss index 838c2b8..dea602c 100644 --- a/falcon/_dev/css/abstracts/variables/bootstrap/_components.scss +++ b/falcon/_dev/css/abstracts/variables/bootstrap/_components.scss @@ -1,5 +1,12 @@ -$border-width: 1px; -$border-color: $gray-300; -$border-radius: .4rem; -$border-radius-lg: .4rem; -$border-radius-sm: .4rem; +$border-width: 1px; +$border-color: $gray-300; +$border-radius: 0.4rem; +$border-radius-lg: 0.4rem; +$border-radius-sm: 0.4rem; + +$card-border-color: $border-color; +$table-border-color: $border-color; +$input-border-color: $border-color; + +$input-focus-border-color: $border-color; +$form-check-input-border: $border-color;