UNPKG

holakit

Version:

Yet another design-driven UI component set.

14 lines (11 loc) 494 B
/*! Built with http://stenciljs.com */ const { h } = window.HolakitCore; class HolaContainer { render() { return h("slot", null); } static get is() { return "hola-container"; } static get encapsulation() { return "shadow"; } static get style() { return ":host {\n display: block;\n position: relative;\n width: 90%;\n max-width: 1220px;\n margin: 0 auto;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}"; } } export { HolaContainer };