/** * EGroupware eTemplate2 - Box widget * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @package etemplate * @subpackage api * @link https://www.egroupware.org * @author Nathan Gray */ import {css, html, LitElement} from "../../../node_modules/@lion/core/index.js"; import {Et2Widget} from "./Et2Widget"; export class Et2Box extends Et2Widget(LitElement) { static get styles() { return [ css` :host { display: block; width: 100%; } :host > div { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: stretch; } ::slotted(*) { /* CSS for child elements */ }`, ]; } render() { return html`
Empty box