UNPKG

590 BJavaScriptView Raw
1import { r as registerInstance, h, e as Host } from './index-d4feb066.js';
2
3const sectionCss = ".section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}bm-section{display:block}";
4
5const Section = class {
6 constructor(hostRef) {
7 registerInstance(this, hostRef);
8 }
9 render() {
10 return (h(Host, { class: {
11 section: true,
12 [this.size]: Boolean(this.size),
13 } }));
14 }
15};
16Section.style = sectionCss;
17
18export { Section as bm_section };