Compare commits

..

2 Commits

Author SHA1 Message Date
7c9aef342d 2.0.27 2023-01-03 17:02:40 +01:00
99eab4e35f fix(core): update 2023-01-03 17:02:40 +01:00
4 changed files with 5 additions and 5 deletions

View File

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

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@designestate/dees-domtools', name: '@designestate/dees-domtools',
version: '2.0.26', version: '2.0.27',
description: 'tools to simplify complex css structures' description: 'tools to simplify complex css structures'
} }

View File

@ -32,7 +32,7 @@ export const globalBaseStyles: string = css`
/* global body styles */ /* global body styles */
body { body {
margin: 0px; margin: 0px;
font-family: 'Roboto', sans-serif; font-family: 'Inter', sans-serif;
box-sizing: border-box; box-sizing: border-box;
} }

View File

@ -12,7 +12,7 @@ export const staticStyles = css`
:host { :host {
box-sizing: border-box; box-sizing: border-box;
font-family: 'Roboto', sans-serif; font-family: 'Inter', sans-serif;
} }
${unsafeCSS(scrollBarStyles)} ${unsafeCSS(scrollBarStyles)}
@ -29,7 +29,7 @@ export const styles = html`
} }
:host { :host {
font-family: 'Roboto', sans-serif; font-family: 'Inter', sans-serif;
} }
${scrollBarStyles} ${scrollBarStyles}