1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 06:18:27 -04:00
2022-07-06 03:02:09 -04:00

12 lines
288 B
TypeScript

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