Skip to content
Snippets Groups Projects
hy-baseline.cjs.entry.js 519 B
Newer Older
  • Learn to ignore specific revisions
  • Markus Kaarto's avatar
    Markus Kaarto committed
    'use strict';
    
    Object.defineProperty(exports, '__esModule', { value: true });
    
    const core = require('./core-e46c9c46.js');
    
    const Baseline = class {
        constructor(hostRef) {
            core.registerInstance(this, hostRef);
        }
        render() {
            return (core.h("div", { class: "hy-baseline" }, core.h("slot", null)));
        }
        static get style() { return "div.hy-baseline {\n  display: block;\n  margin-bottom: 1rem;\n}\n\ndiv.hy-baseline > * + * {\n  margin-top: 1rem;\n}"; }
    };
    
    exports.hy_baseline = Baseline;