From d230a466e169b18c27473a1549614015ef6873f3 Mon Sep 17 00:00:00 2001 From: Diana Mounter Date: Sat, 2 Sep 2017 17:54:12 -0400 Subject: [PATCH] add stories for text alignment, list styles, and text shadows --- .storybook/Typography.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.storybook/Typography.js b/.storybook/Typography.js index 95d8cee6..24fa0571 100644 --- a/.storybook/Typography.js +++ b/.storybook/Typography.js @@ -59,3 +59,34 @@ storiesOf('Typography', module)

lead

)) +.add('text alignment', () => ( +
+

text-left

+

text-center

+

text-right

+
+)) +.add('responsive text alignment', () => ( +
+

Left in a small viewport, centered in mid-sized viewports, and right aligned in larger viewports

+
+)) +.add('list-style-none', () => ( +
+ +
+)) +.add('text shadows', () => ( +
+
+

.text-shadow-dark helps white text stand out on dark or photographic backgrounds

+
+
+

.text-shadow-light creates an embossed effect for dark text

+
+
+))