dees-domtools/ts/domtools.elementbasicstyles.ts
2020-05-23 16:55:36 +00:00

10 lines
185 B
TypeScript

import { html } from 'lit-element';
export const elementBasicStyles = html`
<style>
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
</style>
`;