@shoelace-style/shoelace
Version:
A forward-thinking library of web components.
25 lines (22 loc) • 630 B
JavaScript
// src/components/menu-label/menu-label.styles.ts
import { css } from "lit";
var menu_label_styles_default = css`
:host {
display: block;
}
.menu-label {
display: inline-block;
font-family: var(--sl-font-sans);
font-size: var(--sl-font-size-small);
font-weight: var(--sl-font-weight-semibold);
line-height: var(--sl-line-height-normal);
letter-spacing: var(--sl-letter-spacing-normal);
color: var(--sl-color-neutral-500);
padding: var(--sl-spacing-2x-small) var(--sl-spacing-x-large);
user-select: none;
-webkit-user-select: none;
}
`;
export {
menu_label_styles_default
};