1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 22:28:30 -04:00
jarv.is/components/CodeInline/CodeInline.tsx
Jake Jarvis 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;