@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
42 lines (36 loc) • 787 B
JavaScript
// src/components/radio-group/radio-group.styles.ts
import { css } from "lit";
var radio_group_styles_default = css`
/* stylelint-disable */
:host {
display: block;
}
.form-control {
position: relative;
border: none;
padding: 0;
margin: 0;
}
.form-control__label {
padding: 0;
}
.radio-group--required .radio-group__label::after {
content: var(--syn-input-required-content);
margin-inline-start: var(--syn-input-required-content-offset);
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
`;
export {
radio_group_styles_default
};
//# sourceMappingURL=chunk.K62NPKGN.js.map