Created
June 30, 2024 14:52
-
-
Save peebeebee/086696d84f1254601ae74b44e6e8d225 to your computer and use it in GitHub Desktop.
Printer Friendly Kiwico Articles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const body = document.body; | |
const hero = document.querySelector('.hero').cloneNode(true); | |
const materials = document.querySelector('.project-materials').cloneNode(true); | |
const article = document.querySelector('.project-steps').cloneNode(true); | |
body.innerHTML = `<style> | |
.step-type { | |
page-break-inside: avoid; | |
} | |
.dotted-line--space-under-large { | |
display: none; | |
} | |
</style>`; | |
body.appendChild(hero); | |
body.appendChild(materials); | |
body.appendChild(article); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment