From 44fdf81a632a081ec941302f6c45e272098ed07c Mon Sep 17 00:00:00 2001 From: "T. H. Wright" Date: Wed, 6 Nov 2019 09:00:56 -0500 Subject: [PATCH] Create common.scss to Support Wrap Elements https://meta.discourse.org/t/md-composer-extras/118912/10?u=thwright --- common/common.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/common.scss diff --git a/common/common.scss b/common/common.scss new file mode 100644 index 0000000..77cc8e1 --- /dev/null +++ b/common/common.scss @@ -0,0 +1,10 @@ +[data-wrap="center"] { + text-align: center; +} +[data-wrap="right"] { + text-align: right; +} + +[data-wrap="justify"] { + text-align: justify; +}