From 57adf0c679a160feb5a0cae0ffb7618bac79234b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Fri, 29 Jan 2021 15:40:33 +0100 Subject: [PATCH] Fix dark mode It was broken after the welcome card refactor. --- snikket_web/scss/app.scss | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/snikket_web/scss/app.scss b/snikket_web/scss/app.scss index 2c9b8b6..a82a53b 100644 --- a/snikket_web/scss/app.scss +++ b/snikket_web/scss/app.scss @@ -1090,14 +1090,10 @@ pre.guru-meditation { } } - div.welcome-cards { - & > .card { - background: black; - } - - & > a.card { - & > h2 { - color: $primary-800; + nav.welcome { + > ul { + > li { + background-color: black; } } } @@ -1144,11 +1140,11 @@ pre.guru-meditation { } &.secondary { - background: linear-gradient(0deg, $gray-400, $gray-500); + background: linear-gradient(0deg, $gray-200, $gray-300); color: $gray-900; &:hover, &:focus { - background: linear-gradient(0deg, $gray-500, $gray-600); + background: linear-gradient(0deg, $gray-300, $gray-400); color: white; }