diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2023-10-27 01:56:04 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2023-10-27 01:56:04 -0600 |
| commit | fd7b62d80cbbc6913ba9dacab702736d69a959f6 (patch) | |
| tree | d37191e04bb2a934a5e8a0c345a30d34ade430d3 | |
| parent | 49505054be54182c39c0a6697cd3cb2663ecb134 (diff) | |
fix lint error in default stylesheet source
| -rw-r--r-- | src/stylesheets/asciidoctor.css | 12 |
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; } |
