Skip to content
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

ps - fix margin on some alert examples #158

Merged
merged 1 commit into from
Mar 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions stories/Alerts.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ storiesOf('Alerts', module)
icon={boolean('icon', false)}
dismissible={boolean('dismissible', false)}
>
<p>{text('content', `Lorem ipsum dolor sit amet, consectetur adipiscing
{text('content', `Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.`)}</p>
aliquip ex ea commodo consequat.`)}
</Alert>
))
.addWithInfo('Colors', () => (
<div>
<Alert>
<p>The default alert is a "warning". It supports any sort of custom markup.</p>
<p className="mb-0"><Button>Like This!</Button></p>
<div><Button>Like This!</Button></div>
</Alert>
<Alert color="success">
You can specify an alert color. This one has <code>color="success"</code>
Expand All @@ -41,15 +41,13 @@ aliquip ex ea commodo consequat.`)}</p>
You can specify an alert color. This one has <code>color="success"</code>
</Alert>
<Alert icon color="danger">
<p className="mb-0">
Humblebrag prism twee, gochujang seitan whatever asymmetrical ramps enamel pin austin
salvia swag helvetica. Chartreuse food truck tofu raclette, 3 wolf moon poke chia paleo
skateboard. Pickled tote bag echo park raclette. Irony fashion axe sartorial, cornhole
jean shorts vaporware flannel salvia glossier beard 3 wolf moon. Literally semiotics
hammock irony cred, bicycle rights lomo selvage tousled vegan 8-bit. Four loko cardigan
live-edge truffaut pour-over, helvetica chia brooklyn swag pug scenester kogi pitchfork
leggings yuccie. Ethical put a bird on it portland vape YOLO.
</p>
Humblebrag prism twee, gochujang seitan whatever asymmetrical ramps enamel pin austin
salvia swag helvetica. Chartreuse food truck tofu raclette, 3 wolf moon poke chia paleo
skateboard. Pickled tote bag echo park raclette. Irony fashion axe sartorial, cornhole
jean shorts vaporware flannel salvia glossier beard 3 wolf moon. Literally semiotics
hammock irony cred, bicycle rights lomo selvage tousled vegan 8-bit. Four loko cardigan
live-edge truffaut pour-over, helvetica chia brooklyn swag pug scenester kogi pitchfork
leggings yuccie. Ethical put a bird on it portland vape YOLO.
</Alert>
<Alert icon color="info">
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
Expand Down