mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 13:58:25 -04:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
import { styled, theme } from "../../lib/styles/stitches.config";
|
|
|
|
const Code = styled("code", {
|
|
backgroundColor: theme.colors.codeBackground,
|
|
border: `1px solid ${theme.colors.kindaLight}`,
|
|
borderRadius: theme.radii.corner,
|
|
transition: `background ${theme.transitions.fade}, border ${theme.transitions.fade}`,
|
|
});
|
|
|
|
export default Code;
|