@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
30 lines (28 loc) • 728 B
JavaScript
import { defineComponentSlotStyle } from "../../core/system/config.js";
import { focusRingStyle } from "../../core/css/focus-ring.js";
//#region src/components/link-box/link-box.style.ts
const linkBoxStyle = defineComponentSlotStyle({ base: {
overlay: {
focusVisibleRing: "none",
position: "static",
_before: {
boxSize: "full",
cursor: "inherit",
display: "block",
inset: "0",
position: "absolute",
zIndex: "0"
},
_focusVisible: { _before: focusRingStyle.outline }
},
root: {
"a[href]:not([data-link-box-overlay]), abbr[title]": {
position: "relative",
zIndex: "yamcha"
},
position: "relative"
}
} });
//#endregion
export { linkBoxStyle };
//# sourceMappingURL=link-box.style.js.map