0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-04 08:12:39 +00:00

Unset :first-line small-caps rule with drop-cap

This commit is contained in:
Gazook89
2022-03-21 22:02:44 -05:00
parent 323ccf3b25
commit b17f173e03

View File

@@ -97,7 +97,10 @@ module.exports = [
gen : dedent`/* Removes Drop Caps */ gen : dedent`/* Removes Drop Caps */
.page h1+p:first-letter { .page h1+p:first-letter {
all: unset; all: unset;
}\n\n` }\n\n
.page h1+p:first-line {
all: unset;
}`
}, },
{ {
name : 'Tweak Drop Cap', name : 'Tweak Drop Cap',