UNPKG

654 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', { value: true });
4
5const index = require('./index-8e7d875f.js');
6
7const 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}";
8
9const Section = class {
10 constructor(hostRef) {
11 index.registerInstance(this, hostRef);
12 }
13 render() {
14 return (index.h(index.Host, { class: {
15 section: true,
16 [this.size]: Boolean(this.size),
17 } }));
18 }
19};
20Section.style = sectionCss;
21
22exports.bm_section = Section;