From 05b1292e9d8c13b3ceaec8651458447d5c997a36 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 24 Jul 2017 14:26:26 +0100 Subject: [PATCH] Make text black in error/danger banners For consistency with what GOV.UK Elements does, the text in our banners should be black, not red. See examples here: http://govuk-elements.herokuapp.com/errors/#summarise-errors This also makes us consistent with what Pay are doing. --- app/assets/stylesheets/components/banner.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/components/banner.scss b/app/assets/stylesheets/components/banner.scss index 3422f7fd3..f8cd258b6 100644 --- a/app/assets/stylesheets/components/banner.scss +++ b/app/assets/stylesheets/components/banner.scss @@ -49,7 +49,7 @@ @extend %banner; @include bold-19; background: $white; - color: $error-colour; + color: $text-colour; border: 5px solid $error-colour; margin: 15px 0; text-align: left;