fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-13 14:57:30 +00:00
parent 7977538c05
commit faa7adcffe
2 changed files with 31 additions and 20 deletions

View File

@ -1,26 +1,30 @@
import { DomTools } from './domtools.classes.domtools';
export const scrollBarStyles = `
/* width */
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #111;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #666;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #777;
}
`;
export const setupGlobalTheme = (domToolsInstance: DomTools) => {
const styles = `
/* width */
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #111;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #666;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #777;
}
${scrollBarStyles}
`;
domToolsInstance.setGlobalStyles(styles);

View File

@ -1,13 +1,20 @@
import * as plugins from './domtools.plugins';
import { DomTools } from './domtools.classes.domtools';
import { scrollBarStyles } from './domtools.css.theme';
import { html } from 'lit-element';
export const styles = html`
/**
* styles to be included in every webcomponent
*/
export const styles = html`;
<style>
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
${scrollBarStyles}
</style>
`;