mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 22:28:30 -04:00
* switch fonts to Geist Sans and Geist Mono * adjust font sizes slightly * fix lockfile * Update contact.tsx
11 lines
233 B
TypeScript
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;
|