From fd7b62d80cbbc6913ba9dacab702736d69a959f6 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Fri, 27 Oct 2023 01:56:04 -0600 Subject: fix lint error in default stylesheet source --- src/stylesheets/asciidoctor.css | 12 ++++++++---- 1 file 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; } -- cgit v1.2.3