0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 16:12:38 +00:00
This commit is contained in:
David Bolack
2024-10-22 19:24:04 -05:00
parent f54ed3f4be
commit 75e9b4342e
2 changed files with 10 additions and 11 deletions

View File

@@ -79,6 +79,8 @@ fs.emptyDirSync('./build');
less.render(fs.readFileSync(src).toString(), { less.render(fs.readFileSync(src).toString(), {
compress : !isDev compress : !isDev
}, function(e, output) { }, function(e, output) {
console.log(src);
console.log(output);
fs.outputFile(outputDirectory, output.css); fs.outputFile(outputDirectory, output.css);
}); });
})(`./build/themes/V3/${dir}/style.css`); })(`./build/themes/V3/${dir}/style.css`);

View File

@@ -494,7 +494,14 @@ body { counter-reset : page-numbers 0; }
&:nth-child(even) { &:nth-child(even) {
.pageNumber { left : 30px; } .pageNumber { left : 30px; }
} }
<<<<<<< HEAD
.resetCounting {
counter-set : page-numbers 1;
}
&:not(:has(.skipCounting)) {
counter-increment : page-numbers;
}
} }
//******************************* //*******************************
@@ -561,15 +568,5 @@ body { counter-reset : page-numbers 0; }
.ol-noIndent ol li:not(:last-child) { .ol-noIndent ol li:not(:last-child) {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
=======
.resetCounting {
counter-set : page-numbers 1;
}
&:not(:has(.skipCounting)) {
counter-increment : page-numbers;
}
>>>>>>> master
} }