@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
25 lines (22 loc) • 611 B
JavaScript
// src/components/menu/menu.styles.ts
import { css } from "lit";
var menu_styles_default = css`
/* stylelint-disable */
:host {
display: block;
position: relative;
background: var(--syn-panel-background-color);
border: solid var(--syn-panel-border-width) var(--syn-panel-border-color);
border-radius: var(--syn-border-radius-medium);
padding: var(--syn-spacing-x-small) 0;
overflow: auto;
overscroll-behavior: none;
}
::slotted(syn-divider) {
--spacing: var(--syn-spacing-x-small);
}
`;
export {
menu_styles_default
};
//# sourceMappingURL=chunk.C2CWYCOU.js.map