From c80a6e922c9a17f974d276ab6d594c3964fd48e5 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Wed, 29 Jan 2020 02:54:58 -0800 Subject: [PATCH] make expired banner legible --- stylesheets/_theme_dark.scss | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/stylesheets/_theme_dark.scss b/stylesheets/_theme_dark.scss index 7703ac099..0a7579496 100644 --- a/stylesheets/_theme_dark.scss +++ b/stylesheets/_theme_dark.scss @@ -1,5 +1,4 @@ // Don't forget to handle the background of the popup windows! - body.dark-theme { background-color: $color-black; color: $color-gray-05; @@ -298,12 +297,24 @@ body.dark-theme { } } + /* why can't I access $session-color values here? */ .expiredAlert { - background: #f3f3a7; + background: #28f587; + color: black; + /* biggest we can make the font without wrapping the current text at minimum app width */ + font-family: 'Wasa'; + font-size: 20px; + height: 60px; + + span { + line-height: 36px; + } button { + font-size: 14px; + height: 36px; color: white; - background: $blue; + background: #474646; } }