@evergreen-wc/eve-container
v0.1.1
Published
Container component made with lit element
Downloads
226
Readme
eve-container
An Evergreen Container Web Component
Install
npm i @evergreen-wc/eve-container
Usage
import { html, LitElement } from 'lit';
import '@evergreen-wc/eve-container';
class MyComponent extends LitElement {
render() {
return html`
<eve-container fluid></eve-container>
`;
}
}
customElements.define('my-component', MyComponent);
Props
| Property | Description | | -------- | ----------- | | fluid | Set width to 100% of all devices. Otherwise, width is preset to responsive breakpoints >=1200px, >=992px, >=768px, >=576px, <576px |