lion/packages-node/providence-analytics/dashboard/src/app/styles/global.css.js

16 lines
252 B
JavaScript

import { css } from 'lit-element';
export const global = css`
:host {
font-family: 'Roboto Condensed', sans-serif;
--primary-color: cornflowerblue;
}
* {
box-sizing: border-box;
}
*:focus {
outline: 2px dotted gray;
}
`;