@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
27 lines (24 loc) • 706 B
JavaScript
// src/components/menu-label/menu-label.styles.ts
import { css } from "lit";
var menu_label_styles_default = css`
/* stylelint-disable */
:host {
display: block;
}
.menu-label {
display: inline-block;
font-family: var(--syn-font-sans);
font-size: var(--syn-font-size-small);
font-weight: var(--syn-font-weight-semibold);
line-height: var(--syn-line-height-normal);
letter-spacing: var(--syn-letter-spacing-normal);
color: var(--syn-color-neutral-500);
padding: var(--syn-spacing-2x-small) var(--syn-spacing-x-large);
user-select: none;
-webkit-user-select: none;
}
`;
export {
menu_label_styles_default
};
//# sourceMappingURL=chunk.RAOPZXJL.js.map