holakit
Version:
Yet another design-driven UI component set.
14 lines (11 loc) • 617 B
JavaScript
/*! Built with http://stenciljs.com */
const { h } = window.HolakitCore;
class HolaFooter {
render() {
return h("slot", null);
}
static get is() { return "hola-footer"; }
static get encapsulation() { return "shadow"; }
static get style() { return ":host {\n display: block;\n margin-top: 3rem;\n padding: 5rem 0;\n background: #444;\n color: rgba(255, 255, 255, 0.97);\n color: var(--hola-text-light-color)\n}\n\n\@media (max-width: 700px) {\n\n:host {\n margin-top: 1.8rem;\n padding: 3rem 0\n}\n }\n\n::slotted(*) {\n opacity: 0.8;\n}"; }
}
export { HolaFooter };