File size: 652 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import { defineRecipe } from "../def"
export const skipNavLinkRecipe = defineRecipe({
className: "skip-nav",
base: {
display: "inline-flex",
bg: "bg.panel",
padding: "2.5",
borderRadius: "l2",
fontWeight: "semibold",
focusVisibleRing: "outside",
textStyle: "sm",
userSelect: "none",
border: "0",
height: "1px",
width: "1px",
margin: "-1px",
outline: "0",
overflow: "hidden",
position: "absolute",
clip: "rect(0 0 0 0)",
_focusVisible: {
clip: "auto",
width: "auto",
height: "auto",
position: "fixed",
top: "6",
insetStart: "6",
},
},
})
|