From 3fe3841f624dbb3f905e24c44d39d67e984aa1d9 Mon Sep 17 00:00:00 2001 From: RemixDev Date: Tue, 5 May 2020 15:46:57 +0200 Subject: [PATCH] Fixed active tab not being displayed --- public/css/modules/tabs.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/css/modules/tabs.css b/public/css/modules/tabs.css index 162b93c..f61fb1f 100644 --- a/public/css/modules/tabs.css +++ b/public/css/modules/tabs.css @@ -4,3 +4,11 @@ .favorites_tabcontent { display: none; } + +.tab button{ + background-color: var(--primary-background); +} + +.tab button.active{ + background-color: var(--accent-color); +}