fix(core): update

This commit is contained in:
2020-09-13 14:57:30 +00:00
parent 7977538c05
commit faa7adcffe
2 changed files with 31 additions and 20 deletions

View File

@ -1,13 +1,20 @@
import * as plugins from './domtools.plugins';
import { DomTools } from './domtools.classes.domtools';
import { scrollBarStyles } from './domtools.css.theme';
import { html } from 'lit-element';
export const styles = html`
/**
* styles to be included in every webcomponent
*/
export const styles = html`;
<style>
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
${scrollBarStyles}
</style>
`;