diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-12-15 12:29:09 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-12-15 12:29:09 -0400 |
commit | 4cbbea4bbc03a54b0b96696a960351437bc27635 (patch) | |
tree | 186e173ed323516f8ae8c80510bf6c561a038502 /src/content/dependencies | |
parent | 51d7d11b15784a616c6e36776702359d7a8b982e (diff) |
content, css: fix tooltip offsets again
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/generateNewsEntryReadAnotherLinks.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/content/dependencies/generateNewsEntryReadAnotherLinks.js b/src/content/dependencies/generateNewsEntryReadAnotherLinks.js index c97d8150..33c5bda0 100644 --- a/src/content/dependencies/generateNewsEntryReadAnotherLinks.js +++ b/src/content/dependencies/generateNewsEntryReadAnotherLinks.js @@ -88,7 +88,10 @@ export default { html.tag('p', { [html.onlyIfContent]: true, [html.joinChildren]: html.tag('br'), - class: ['read-another-links', 'offset-tooltips'], + class: [ + 'read-another-links', + entryLines.length > 1 && 'offset-tooltips', + ], }, entryLines)); }, }; |