10 lines
185 B
TypeScript
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>
|
||
|
`;
|