From b17f173e03c75ed8a4bcf760165207ae8430cbbb Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Mon, 21 Mar 2022 22:02:44 -0500 Subject: [PATCH] Unset `:first-line` small-caps rule with drop-cap --- client/homebrew/editor/snippetbar/snippets/snippets.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/homebrew/editor/snippetbar/snippets/snippets.js b/client/homebrew/editor/snippetbar/snippets/snippets.js index 7b008fe1e..af8393046 100644 --- a/client/homebrew/editor/snippetbar/snippets/snippets.js +++ b/client/homebrew/editor/snippetbar/snippets/snippets.js @@ -97,7 +97,10 @@ module.exports = [ gen : dedent`/* Removes Drop Caps */ .page h1+p:first-letter { all: unset; - }\n\n` + }\n\n + .page h1+p:first-line { + all: unset; + }` }, { name : 'Tweak Drop Cap',