Files
jarv.is/components/Code/Code.tsx
T
2022-07-13 19:48:49 -04:00

12 lines
368 B
TypeScript

import { styled, theme } from "../../lib/styles/stitches.config";
const Code = styled("code", {
fontSize: "0.925em",
backgroundColor: theme.colors.codeBackground,
border: `1px solid ${theme.colors.kindaLight}`,
borderRadius: theme.radii.corner,
transition: `background ${theme.transitions.fade}, border ${theme.transitions.fade}`,
});
export default Code;