From 70bdafa0d2532d4e55a6c38cf66a7ccb98f2839b Mon Sep 17 00:00:00 2001 From: codecalm Date: Mon, 10 Oct 2022 22:14:01 +0200 Subject: [PATCH] fix #895 - background color overwrites background image --- src/scss/utils/_colors.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/utils/_colors.scss b/src/scss/utils/_colors.scss index d281f5286..2ba7f4131 100644 --- a/src/scss/utils/_colors.scss +++ b/src/scss/utils/_colors.scss @@ -6,7 +6,7 @@ .bg-#{"" + $color}-lt { color: var(--#{$prefix}#{$color}) !important; - background: rgba(var(--#{$prefix}#{$color}-rgb), .1) !important; //todo + background-color: rgba(var(--#{$prefix}#{$color}-rgb), .1) !important; //todo } }