1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 15:27:43 +01:00
Maicol Battistini bba677d522
refactor: 🎨 Migliorata struttura del codice con nuove regole ESLint
Sono state aggiunte nuove regole ESLint per standardizzare il codice
2021-09-07 13:37:18 +02:00

18 lines
467 B
JavaScript
Vendored

import {Drawer as MWCDrawer} from '@material/mwc-drawer';
import {css} from 'lit-element';
export default class MaterialDrawer 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);
}
`];
}
window.customElements.define('material-drawer', MaterialDrawer);