mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:38:29 -04:00
12 lines
369 B
TypeScript
12 lines
369 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.rounded,
|
|
transition: `background ${theme.transitions.fade}, border ${theme.transitions.fade}`,
|
|
});
|
|
|
|
export default Code;
|