0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Merge pull request #2085 from Gazook89/Drop-Cap-Snippet-Update

Unset `:first-line` small-caps rule with *Remove Drop Cap* snippet
This commit is contained in:
Trevor Buckner
2022-03-27 01:14:07 -04:00
committed by GitHub

View File

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