1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 15:27:43 +01:00

17 lines
435 B
JavaScript
Raw Normal View History

import {css} from 'lit-element';
import {Drawer as MWCDrawer} from '@material/mwc-drawer';
class Drawer extends MWCDrawer {
static styles = [MWCDrawer.styles, css`
:first-child {
border-right: none;
}
.mdc-drawer-app-content {
color: var(--mdc-theme-text-primary-on-background);
background-color: var(--mdc-theme-background);
}
`];
}
global.customElements.define('material-drawer', Drawer);