Skip to content

Commit

Permalink
Update Alert banner message-body to match design system (#9463)
Browse files Browse the repository at this point in the history
* make alert banner text black

* remove comment in scss file
  • Loading branch information
Monkeychip committed Jul 14, 2020
1 parent 352d9fb commit 3d3797b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/app/styles/core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
@import 'bulma/switch';

// Override Bulma details where appropriate
@import './core/alert-banner';
@import './core/generic';
@import './core/box';
@import './core/breadcrumb';
Expand Down
6 changes: 6 additions & 0 deletions ui/app/styles/core/alert-banner.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.alert-banner-message-body {
border: 0;
margin-top: $spacing-xxs;

color: $black;
}
2 changes: 1 addition & 1 deletion ui/lib/core/addon/templates/components/alert-banner.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{{/if}}
</div>
{{#if @message}}
<p class="message-body">
<p class="alert-banner-message-body">
{{@message}}
</p>
{{/if}}
Expand Down

0 comments on commit 3d3797b

Please sign in to comment.