summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2023-10-27 01:56:04 -0600
committerDan Allen <dan.j.allen@gmail.com>2023-10-27 01:56:04 -0600
commitfd7b62d80cbbc6913ba9dacab702736d69a959f6 (patch)
treed37191e04bb2a934a5e8a0c345a30d34ade430d3
parent49505054be54182c39c0a6697cd3cb2663ecb134 (diff)
fix lint error in default stylesheet source
-rw-r--r--src/stylesheets/asciidoctor.css12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/stylesheets/asciidoctor.css b/src/stylesheets/asciidoctor.css
index c90cd8ae..03de8566 100644
--- a/src/stylesheets/asciidoctor.css
+++ b/src/stylesheets/asciidoctor.css
@@ -212,19 +212,23 @@ audio:not([controls]) {
float: right !important;
}
-.text-left, div.text-left > * {
+.text-left,
+div.text-left > * {
text-align: left !important;
}
-.text-right, div.text-right > * {
+.text-right,
+div.text-right > * {
text-align: right !important;
}
-.text-center, div.text-center > * {
+.text-center,
+div.text-center > * {
text-align: center !important;
}
-.text-justify, div.text-justify > * {
+.text-justify,
+div.text-justify > * {
text-align: justify !important;
}