diff --git a/client/icons/book-inside-cover.svg b/client/icons/book-inside-cover.svg new file mode 100644 index 000000000..9005e3247 --- /dev/null +++ b/client/icons/book-inside-cover.svg @@ -0,0 +1,53 @@ + + + + + + + + + diff --git a/client/icons/customIcons.less b/client/icons/customIcons.less index 3e28089a5..d89afdab1 100644 --- a/client/icons/customIcons.less +++ b/client/icons/customIcons.less @@ -40,6 +40,9 @@ .book-front-cover { content: url('../icons/book-front-cover.svg'); } +.book-inside-cover { + content: url('../icons/book-inside-cover.svg'); +} .davek { content: url('../icons/Davek.svg'); } diff --git a/themes/V3/5ePHB/snippets.js b/themes/V3/5ePHB/snippets.js index ae9601e48..6811f9240 100644 --- a/themes/V3/5ePHB/snippets.js +++ b/themes/V3/5ePHB/snippets.js @@ -3,10 +3,9 @@ const MagicGen = require('./snippets/magic.gen.js'); const ClassTableGen = require('./snippets/classtable.gen.js'); const MonsterBlockGen = require('./snippets/monsterblock.gen.js'); -const scriptGen = require('./snippets/script.gen.js'); +const scriptGen = require('./snippets/script.gen.js'); const ClassFeatureGen = require('./snippets/classfeature.gen.js'); const CoverPageGen = require('./snippets/coverpage.gen.js'); -const InsideCoverPageGen = require('./snippets/insidecoverpage.gen.js') const TableOfContentsGen = require('./snippets/tableOfContents.gen.js'); const dedent = require('dedent-tabs').default; @@ -178,7 +177,7 @@ module.exports = [ }, { name : 'Inside Cover Page', - icon : 'fac book-front-cover', + icon : 'fac book-inside-cover', gen : CoverPageGen.inside, experimental : true },