Files
jarv.is/components/CodeInline/CodeInline.tsx
T
jakeandGitHub e877916f6f switch fonts to Geist Sans and Geist Mono (#1835)
* switch fonts to Geist Sans and Geist Mono

* adjust font sizes slightly

* fix lockfile

* Update contact.tsx
2024-01-08 11:10:05 -05:00

11 lines
233 B
TypeScript

import Code from "../Code";
import { styled } from "../../lib/styles/stitches.config";
const CodeInline = styled(Code, {
padding: "0.175em 0.3em",
fontSize: "0.925em",
pageBreakInside: "avoid",
});
export default CodeInline;