0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 13:32:39 +00:00

Remove basic print snippets from PHB theme

This commit is contained in:
Trevor Buckner
2022-08-04 22:32:04 -04:00
parent 0611c67651
commit 58edf329f5
2 changed files with 3 additions and 25 deletions

View File

@@ -250,26 +250,6 @@ module.exports = [
icon : 'fas fa-print',
view : 'style',
snippets : [
{
name : 'A4 Page Size',
icon : 'far fa-file',
gen : dedent`/* A4 Page Size */
.page{
width : 210mm;
height : 296.8mm;
}\n\n`
},
{
name : 'Square Page Size',
icon : 'far fa-file',
gen : dedent`/* Square Page Size */
.page {
width : 125mm;
height : 125mm;
padding : 12.5mm;
columns : unset;
}\n\n`
},
{
name : 'Ink Friendly',
icon : 'fas fa-tint',
@@ -285,6 +265,5 @@ module.exports = [
}\n\n`
},
]
},
}
];

View File

@@ -213,7 +213,7 @@ module.exports = [
icon : 'fas fa-tint',
gen : dedent`
/* Ink Friendly */
*:is(.page,.monster,.note,.descriptive) {
*:is(.page) {
background : white !important;
filter : drop-shadow(0px 0px 3px #888) !important;
}
@@ -223,6 +223,5 @@ module.exports = [
}\n\n`
},
]
},
}
];