From 6651cfa53695e0b8a979d357ce0896ecca537873 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Thu, 14 Jul 2022 22:03:58 +0700 Subject: [PATCH] fixed toast colors --- src/utils/toast/styles.module.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/utils/toast/styles.module.scss b/src/utils/toast/styles.module.scss index 2b0c3f8e..7f316f02 100644 --- a/src/utils/toast/styles.module.scss +++ b/src/utils/toast/styles.module.scss @@ -1,6 +1,6 @@ @import "src/styles/variables"; -.toast { +div.toast { @include outer_shadow; cursor: pointer; @@ -10,14 +10,14 @@ color: white; } -.error { +div.toast.error { background: $red_gradient_alt; } -.success { +div.toast.success { background: $green_gradient; } -.info { +div.toast.info { background: $cyan_gradient; }