dees-domtools/ts/domtools.elementbasicstyles.ts

10 lines
185 B
TypeScript
Raw Normal View History

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