@kano/web-components
Version:
Shared web-components for the Kano ecosystem.
14 lines (11 loc) • 392 B
JavaScript
const $_documentContainer = document.createElement('template');
$_documentContainer.setAttribute('style', 'display: none;');
$_documentContainer.innerHTML = `<custom-style>
<style is="custom-style">
:root {
--content-width: 880px;
--content-padding: 0 8px;
}
</style>
</custom-style>`;
document.head.appendChild($_documentContainer.content);