summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2023-10-27 01:29:24 -0600
committerDan Allen <dan.j.allen@gmail.com>2023-10-27 01:29:24 -0600
commit49505054be54182c39c0a6697cd3cb2663ecb134 (patch)
treec8c7cb4646fb09da97c12d26894ee04e712aaacb /src
parent6d2c7a7a30dbb24c2505f55c2d7895d6b69f5580 (diff)
modify default stylesheet to honor text-* roles on quote blocks
Diffstat (limited to 'src')
-rw-r--r--src/stylesheets/asciidoctor.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stylesheets/asciidoctor.css b/src/stylesheets/asciidoctor.css
index 4987e3ed..c90cd8ae 100644
--- a/src/stylesheets/asciidoctor.css
+++ b/src/stylesheets/asciidoctor.css
@@ -212,19 +212,19 @@ audio:not([controls]) {
float: right !important;
}
-.text-left {
+.text-left, div.text-left > * {
text-align: left !important;
}
-.text-right {
+.text-right, div.text-right > * {
text-align: right !important;
}
-.text-center {
+.text-center, div.text-center > * {
text-align: center !important;
}
-.text-justify {
+.text-justify, div.text-justify > * {
text-align: justify !important;
}