From 0105a4f4ceaf58f5b14a7e84a8a0a08a1f0e49e8 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Wed, 21 Feb 2024 17:52:47 +0100 Subject: [PATCH] css bg color fix --- playlist/templates/background.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playlist/templates/background.css b/playlist/templates/background.css index 0292f63..49761f8 100644 --- a/playlist/templates/background.css +++ b/playlist/templates/background.css @@ -5,6 +5,6 @@ body { background-image: url('{{background.image.url}}'); {% if not background.repeat %}background-repeat: no-repeat;{% endif %} {% else %} - background-color: {{background.color}}; + background-color: {{background.color}} !important; {% endif %} } \ No newline at end of file