-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to USWDS v3.9.0 #1397
Update to USWDS v3.9.0 #1397
Changes from 6 commits
a70a8c3
4ecb49f
915ab8d
13eb8b5
9d3b349
c431694
0e99fdc
447b3b2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,15 +181,17 @@ export class VaAlert { | |
class="usa-alert__body" | ||
onClick={this.handleAlertBodyClick.bind(this)} | ||
> | ||
{status === 'continue' && ( | ||
<va-icon | ||
class="va-alert__lock-icon" | ||
icon="lock" | ||
size={slim ? 3 : 4} | ||
></va-icon> | ||
)} | ||
{!slim && <slot name="headline"></slot>} | ||
<slot></slot> | ||
<div> | ||
{status === 'continue' && ( | ||
<va-icon | ||
class="va-alert__lock-icon" | ||
icon="lock" | ||
size={slim ? 3 : 4} | ||
></va-icon> | ||
)} | ||
{!slim && <slot name="headline"></slot>} | ||
<slot></slot> | ||
</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have added a wrapping .usa-alert--info .usa-alert__body > * {
margin-left: 2.5rem;
} The selector The alert content is displaying like this without that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is happening now because this update was made:
|
||
</div> | ||
</div> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will revert before merging.