mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
// eagerly import theme styles so as we can override them
|
|
import '@vaadin/vaadin-lumo-styles/all-imports';
|
|
|
|
const $_documentContainer = document.createElement('template');
|
|
|
|
$_documentContainer.innerHTML = `
|
|
<custom-style>
|
|
<style>
|
|
|
|
</style>
|
|
</custom-style>
|
|
|
|
|
|
`;
|
|
|
|
document.head.appendChild($_documentContainer.content);
|