From 7f221c1a8c723b2e2f489cc772215b975e10600e Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 28 Mar 2021 21:51:11 +0000 Subject: [PATCH] fix(core): update --- ts/domtools.elementbasic.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ts/domtools.elementbasic.ts b/ts/domtools.elementbasic.ts index 9822502..6b95798 100644 --- a/ts/domtools.elementbasic.ts +++ b/ts/domtools.elementbasic.ts @@ -2,7 +2,20 @@ import * as plugins from './domtools.plugins'; import { DomTools } from './domtools.classes.domtools'; import { scrollBarStyles } from './domtools.css.theme'; -import { html, LitElement } from 'lit-element'; +import { html, LitElement, css, unsafeCSS } from 'lit-element'; + +export const staticStyles = css` + * { + transition: background 0.1s, color 0.1s; + box-sizing: border-box; + } + + :host { + font-family: 'Roboto', sans-serif; + } + + ${unsafeCSS(scrollBarStyles)} +`; /** * styles to be included in every webcomponent