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; }