@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
20 lines (16 loc) • 558 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function getFocusStyles(theme) {
return {
WebkitTapHighlightColor: "transparent",
"&:focus": {
outline: "none",
boxShadow: `0 0 0 2px ${theme.colorScheme === "dark" ? theme.colors.dark[9] : theme.white}, 0 0 0 4px ${theme.colors[theme.primaryColor][theme.colorScheme === "dark" ? 7 : 5]}`
},
"&:focus:not(:focus-visible)": {
boxShadow: "none"
}
};
}
exports.getFocusStyles = getFocusStyles;
//# sourceMappingURL=get-focus-styles.js.map