From e190615f97defd92f1f3750be6ef85aaed647a1a Mon Sep 17 00:00:00 2001 From: John Cowen Date: Tue, 17 Dec 2019 16:17:07 +0000 Subject: [PATCH] ui: Fixes styling of 'duplicate intention' error message (#6936) --- ui-v2/app/styles/components/flash-message.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ui-v2/app/styles/components/flash-message.scss b/ui-v2/app/styles/components/flash-message.scss index 13a2334f7..d9101a298 100644 --- a/ui-v2/app/styles/components/flash-message.scss +++ b/ui-v2/app/styles/components/flash-message.scss @@ -5,3 +5,13 @@ %flash-message.exiting { @extend %blink-in-fade-out; } +/* This is for the flash message that appears */ +/* when you save an intention that already exists */ +/* once we have refactored app-view with data-source with nicer */ +/* flash message usage we should be able to remove this */ +%flash-message p.exists strong::before { + @extend %with-cancel-square-fill-color-icon; +} +%flash-message p.exists { + @extend %frame-red-500; +}