From 9c78dd234f1a2e9f9789754404140f6099a59dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kalamon?= Date: Sun, 2 Jan 2022 23:15:47 +0100 Subject: [PATCH] fix: [#349] missing text align in text stories --- components/wrappers/TextStories/TextStories.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/wrappers/TextStories/TextStories.css b/components/wrappers/TextStories/TextStories.css index e66d820..18cecd9 100644 --- a/components/wrappers/TextStories/TextStories.css +++ b/components/wrappers/TextStories/TextStories.css @@ -8,3 +8,15 @@ .text-stories >>> .text-alignment-right { text-indent: 0; } + +.text-stories >>> .text-alignment-left { + text-align: left; +} + +.text-stories >>> .text-alignment-center { + text-align: center; +} + +.text-stories >>> .text-alignment-right { + text-align: right; +}