UNPKG

716 BJavaScriptView Raw
1import { r as registerInstance, h, H as Host } from './index-b784ba9c.js';
2var 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}";
3var Section = /** @class */ (function () {
4 function Section(hostRef) {
5 registerInstance(this, hostRef);
6 }
7 Section.prototype.render = function () {
8 var _a;
9 return (h(Host, { class: (_a = {
10 section: true
11 },
12 _a[this.size] = Boolean(this.size),
13 _a) }));
14 };
15 return Section;
16}());
17Section.style = sectionCss;
18export { Section as bm_section };