lion/demo/src/LeaTabPanel.js
Jorge del Casar 98f1bb7e1c fix: normalize dependencies
Co-authored-by: jorenbroekema <Joren.Broekema@ing.com>
2021-01-06 10:53:38 +01:00

22 lines
475 B
JavaScript

import { LitElement, html, css } from '@lion/core';
export class LeaTabPanel extends LitElement {
static get styles() {
return css`
:host {
background-color: #fff;
background-image: linear-gradient(top, #fff, #ddd);
border-radius: 0 2px 2px 2px;
box-shadow: 0 2px 2px #000, 0 -1px 0 #fff inset;
padding: 30px;
}
`;
}
render() {
return html`
<!-- dom as needed -->
<slot></slot>
`;
}
}