From 5b757d46ea2d543b236a0aa627ca2c9cf78db9df Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 31 May 2022 12:54:46 +0200 Subject: [PATCH] Avoid too much copy and paste in stylesheet --- src/theme.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/theme.scss b/src/theme.scss index d81dd48b7..8de207ab9 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -2169,8 +2169,11 @@ tag-input { } .has-background { + + $darkBackgroundColor: #000000e0; + .card { - background-color: #000000e3; + background-color: $darkBackgroundColor; border-radius: 2px; } @@ -2183,11 +2186,11 @@ tag-input { } footer { - background-color: #000000e3; + background-color: $darkBackgroundColor; } .btn-default { - background-color: #000000cf; + background-color: $darkBackgroundColor; border-color: #868686cf; color: white;