From 1f7050bccfee1782f2e35dac31ff55e3f8571881 Mon Sep 17 00:00:00 2001 From: Tixie Date: Wed, 4 Mar 2020 01:35:23 +0100 Subject: [PATCH] add style to notif messages --- src/assets/scss/3-components/_notifications.scss | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/assets/scss/3-components/_notifications.scss b/src/assets/scss/3-components/_notifications.scss index 7ea12a7..7f092b7 100755 --- a/src/assets/scss/3-components/_notifications.scss +++ b/src/assets/scss/3-components/_notifications.scss @@ -7,8 +7,9 @@ /* == configuration */ /* ----------------------------------------------------------- */ -$notif-success: #00d1b2; -$notif-warning: #ffdd57; +$notif-info: rgba(#0064da, .15); +$notif-success: rgba(#00da64, .15); +$notif-warning: rgba(#da6900, .15); $notif-error: rgba(#da0000, .15); /* ----------------------------------------------------------- */ @@ -22,14 +23,19 @@ $notif-error: rgba(#da0000, .15); font-size: 1.3rem; } +.notif--info { + background-color: $notif-info; + color: #183fc8; +} + .notif--success { background-color: $notif-success; - color: #fff; + color: #0f4014; } .notif--warning { background-color: $notif-warning; - color: #fff; + color: #402c0f; } .notif--error {