@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
30 lines (25 loc) • 765 B
JavaScript
// src/components/menu-label/menu-label.custom.styles.ts
import { css } from "lit";
var menu_label_custom_styles_default = css`
:host {
--display-divider: block;
}
.menu-label__divider {
--spacing: 0;
display: var(--display-divider);
margin-bottom: var(--syn-spacing-x-small);
}
.menu-label {
color: var(--syn-typography-color-text);
font-family: var(--syn-font-sans);
font-size: var(--syn-font-size-medium);
font-weight: var(--syn-font-weight-semibold);
letter-spacing: var(--syn-letter-spacing-normal);
line-height: var(--syn-line-height-normal);
padding: var(--syn-spacing-small) var(--syn-spacing-medium);
}
`;
export {
menu_label_custom_styles_default
};
//# sourceMappingURL=chunk.X6GR6IA2.js.map