UNPKG

@synergy-design-system/components

Version:

This package provides the base of the Synergy Design System as native web components. It uses [lit](https://www.lit.dev) and parts of [shoelace](https://shoelace.style/). Synergy officially supports the latest two versions of all major browsers (as define

29 lines (25 loc) 642 B
// src/components/divider/divider.styles.ts import { css } from "lit"; var divider_styles_default = css` /* stylelint-disable */ :host { --color: var(--syn-panel-border-color); --width: var(--syn-panel-border-width); --spacing: var(--syn-spacing-medium); } :host(:not([vertical])) { display: block; border-top: solid var(--width) var(--color); margin: var(--spacing) 0; } :host([vertical]) { display: inline-block; height: 100%; border-left: solid var(--width) var(--color); margin: 0 var(--spacing); } `; export { divider_styles_default }; //# sourceMappingURL=chunk.FSZIE7IO.js.map