@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
40 lines (34 loc) • 887 B
JavaScript
// src/components/range-tick/range-tick.styles.ts
import { css } from "lit";
var range_tick_styles_default = css`
:host {
--tick-height: var(--syn-spacing-x-small);
--tick-label-top: 10px;
}
.tick {
color: var(--syn-input-icon-color);
font-family: var(--syn-font-family);
font-weight: var(--syn-font-weight-normal);
line-height: var(--syn-line-height-denser);
width: 1px;
}
.tick-line {
background: var(--syn-range-tick-color, var(--syn-color-neutral-400));
height: var(--tick-height);
}
.tick--subdivision .tick-line{
height: calc(var(--tick-height) / 2);
}
.tick-label {
align-items: center;
display: flex;
justify-content: center;
margin-top: var(--tick-label-top);
text-align: center;
white-space: nowrap;
}
`;
export {
range_tick_styles_default
};
//# sourceMappingURL=chunk.DH3ESODU.js.map