@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
38 lines (33 loc) • 862 B
JavaScript
import {
button_styles_default
} from "./chunk.5SQ7NVBX.js";
// src/components/radio-button/radio-button.styles.ts
import { css } from "lit";
var radio_button_styles_default = css`
/* stylelint-disable */
${button_styles_default}
.button__prefix,
.button__suffix,
.button__label {
display: inline-flex;
position: relative;
align-items: center;
}
/* We use a hidden input so constraint validation errors work, since they don't appear to show when used with buttons.
We can't actually hide it, though, otherwise the messages will be suppressed by the browser. */
.hidden-input {
all: unset;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
outline: dotted 1px red;
opacity: 0;
z-index: -1;
}
`;
export {
radio_button_styles_default
};
//# sourceMappingURL=chunk.4BRJ5OJE.js.map