From 4946d08165ed87283fa4c2d12efb9e475d2f5172 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 30 Oct 2020 23:45:01 -0600 Subject: [PATCH] Add border variables to the other themes --- public/static/css/theme/dark.css | 3 +++ public/static/css/theme/halloween.css | 3 +++ public/static/css/theme/light.css | 3 +++ 3 files changed, 9 insertions(+) diff --git a/public/static/css/theme/dark.css b/public/static/css/theme/dark.css index 362d610..b838f0d 100644 --- a/public/static/css/theme/dark.css +++ b/public/static/css/theme/dark.css @@ -19,6 +19,9 @@ --background: #23272A; --background-text: var(--spotify-white); + --card-border-colour: transparent; + --card-border-style: none; + --card-border-width: 0px; --card-colour: #2C2F33; --card-text: #ffffff80; diff --git a/public/static/css/theme/halloween.css b/public/static/css/theme/halloween.css index 3c3590c..8092342 100644 --- a/public/static/css/theme/halloween.css +++ b/public/static/css/theme/halloween.css @@ -19,6 +19,9 @@ --background: #FF8C00; --background-text: var(--spotify-white); + --card-border-colour: transparent; + --card-border-style: none; + --card-border-width: 0px; --card-colour: #794200; --card-text: white; diff --git a/public/static/css/theme/light.css b/public/static/css/theme/light.css index 0338236..2119ac5 100644 --- a/public/static/css/theme/light.css +++ b/public/static/css/theme/light.css @@ -19,6 +19,9 @@ --background: white; --background-text: dimgray; + --card-border-colour: transparent; + --card-border-style: none; + --card-border-width: 0px; --card-colour: #dddddd; --card-text: var(--background-text);