@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
19 lines (16 loc) • 459 B
JavaScript
// src/components/tooltip/tooltip.custom.styles.ts
import { css } from "lit";
var tooltip_custom_styles_default = css`
/* Write custom CSS here */
.tooltip__body {
box-shadow: var(--syn-shadow-large);
}
/** #640: Adjust the zIndex of the arrow to make sure the box-shadow above does not bleed out */
:host ::part(arrow) {
z-index: 0 ;
}
`;
export {
tooltip_custom_styles_default
};
//# sourceMappingURL=chunk.E7LBPRDC.js.map