diff --git a/app/assets/stylesheets/components/banner.scss b/app/assets/stylesheets/components/banner.scss index 7c2fd2b99..c62bfe2c6 100644 --- a/app/assets/stylesheets/components/banner.scss +++ b/app/assets/stylesheets/components/banner.scss @@ -64,13 +64,18 @@ } +.banner-info, .banner-important { @extend %banner; background: $white; color: $text-colour; background-image: file-url('icon-important-2x.png'); background-size: 34px 34px; - background-position: 0 0; + background-position: 0 0px; background-repeat: no-repeat; padding: 7px 0 5px 50px; } + +.banner-info { + background-image: file-url('icon-information-2x.png'); +} diff --git a/app/templates/views/send-sms.html b/app/templates/views/send-sms.html index 7e44bad16..c8a91388d 100644 --- a/app/templates/views/send-sms.html +++ b/app/templates/views/send-sms.html @@ -14,14 +14,21 @@
+ {{ sms_message(template.formatted_as_markup) }} + + {{ banner( + 'You can upload real data, but we’ll only send to your mobile number until you request to go live'|safe, + 'info' + )}} +
+ {{file_upload(form.file, button_text='Upload a CSV file')}} +

Download an example CSV file

- {{file_upload(form.file, button_text='Upload a CSV file')}} - {% endblock %}