From f2f41e601333e9b1bcd5e05de3fd1ae409e1b4e3 Mon Sep 17 00:00:00 2001 From: John Factotum <50942278+johnfactotum@users.noreply.github.com> Date: Tue, 25 Oct 2022 08:47:52 +0000 Subject: [PATCH] Reader: add unprefixed hyphens --- reader.js | 1 + 1 file changed, 1 insertion(+) diff --git a/reader.js b/reader.js index ecaedef..32a5be8 100644 --- a/reader.js +++ b/reader.js @@ -83,6 +83,7 @@ const getCSS = ({ spacing, justify, hyphenate }) => ` line-height: ${spacing}; text-align: ${justify ? 'justify' : 'start'}; -webkit-hyphens: ${hyphenate ? 'auto' : 'manual'}; + hyphens: ${hyphenate ? 'auto' : 'manual'}; -webkit-hyphenate-limit-before: 3; -webkit-hyphenate-limit-after: 2; -webkit-hyphenate-limit-lines: 2;