diff options
| author | Shulhan <ms@kilabit.info> | 2026-03-30 21:30:00 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-03-30 21:30:00 +0700 |
| commit | f9d7f5a462ef3ba6d07f0f13af6816badcea09e1 (patch) | |
| tree | c813b235fa4d6881df51c7b12a1997f21b516f18 /default.css | |
| parent | 4d0204028e90ecd60c74f426456c901367491ed9 (diff) | |
| download | asciidoctor-go-f9d7f5a462ef3ba6d07f0f13af6816badcea09e1.tar.xz | |
all: move the sect anchor element to the right
Previously, we try to fix the anchor position by using "flex-direction:
row-reverse".
This cause the formatted text inside title also become reversed.
For example,
== With `mono`
Will rendered as
mono With $
This is not as expected.
This changes fix this by rendering the anchor on the right after title.
Diffstat (limited to 'default.css')
| -rw-r--r-- | default.css | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/default.css b/default.css index 8138b84..e103647 100644 --- a/default.css +++ b/default.css @@ -373,7 +373,6 @@ h4, h5, h6 { display: flex; - flex-direction: row-reverse; justify-content: start; padding-bottom: 0.5em; } |
