diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-05-02 09:45:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 09:45:44 +0200 |
commit | bfb19a110d93ce5cb7c09fee2442651db182ca4b (patch) | |
tree | afd463654089df045cd91f9ada81c17a0d9e9d10 /scripts/gen_help_html.lua | |
parent | 7c1921e9d69e008781c9fb16c11e843f7bd9099a (diff) | |
download | rneovim-bfb19a110d93ce5cb7c09fee2442651db182ca4b.tar.gz rneovim-bfb19a110d93ce5cb7c09fee2442651db182ca4b.tar.bz2 rneovim-bfb19a110d93ce5cb7c09fee2442651db182ca4b.zip |
docs(html): right-align inline tags (#23403)
Diffstat (limited to 'scripts/gen_help_html.lua')
-rw-r--r-- | scripts/gen_help_html.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/gen_help_html.lua b/scripts/gen_help_html.lua index e2ab70eca2..1bddd3aa8b 100644 --- a/scripts/gen_help_html.lua +++ b/scripts/gen_help_html.lua @@ -927,6 +927,9 @@ local function gen_css(fname) /* Tag pseudo-header common in :help docs. */ .help-tag-right { color: var(--tag-color); + margin-left: auto; + margin-right: 0; + float: right; } h1 .help-tag, h2 .help-tag, h3 .help-tag { font-size: smaller; |