UNPKG

671 BJavaScriptView Raw
1/*!
2 * Bulmil - MIT License
3 */
4'use strict';
5
6Object.defineProperty(exports, '__esModule', { value: true });
7
8const index = require('./index-481858d9.js');
9
10const sectionCss = ".section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section{padding:3rem 3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}bm-section{display:block}";
11
12let Section = class {
13 constructor(hostRef) {
14 index.registerInstance(this, hostRef);
15 }
16 render() {
17 return (index.h(index.Host, { class: {
18 section: true,
19 [this.size]: Boolean(this.size),
20 } }));
21 }
22};
23Section.style = sectionCss;
24
25exports.bm_section = Section;