From 32a537ec06310c099af862e245cd0a399fe8de3f Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Sat, 29 Sep 2018 23:34:07 -0400 Subject: [PATCH] fix: dialog header bg --- client/scss/components/v-dialog.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/scss/components/v-dialog.scss b/client/scss/components/v-dialog.scss index f0f3c4a7..f1487db9 100644 --- a/client/scss/components/v-dialog.scss +++ b/client/scss/components/v-dialog.scss @@ -1,7 +1,7 @@ .dialog-header { background-color: mc('blue', '700'); - background: radial-gradient(ellipse at top, mc('blue', '500'), transparent), - radial-gradient(ellipse at bottom, mc('blue', '800'), transparent); + background: radial-gradient(ellipse at top, mc('blue', '500'), mc('blue', '700')), + radial-gradient(ellipse at bottom, mc('blue', '800'), mc('blue', '700')); height: 60px; color: #FFF; display: flex; @@ -11,7 +11,7 @@ &.is-red { background-color: mc('red', '700'); - background: radial-gradient(ellipse at top, mc('red', '500'), transparent), - radial-gradient(ellipse at bottom, mc('red', '800'), transparent); + background: radial-gradient(ellipse at top, mc('red', '500'), mc('red', '700')), + radial-gradient(ellipse at bottom, mc('red', '800'), mc('red', '700')); } }