Compare commits

...

2 Commits

Author SHA1 Message Date
1cfc07fe8e 1.0.87 2021-03-28 21:51:12 +00:00
7f221c1a8c fix(core): update 2021-03-28 21:51:11 +00:00
3 changed files with 16 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.86",
"version": "1.0.87",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.86",
"version": "1.0.87",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",

View File

@ -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