1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 15:08:27 -04:00
jarv.is/components/Content/Content.tsx

15 lines
264 B
TypeScript

import { styled, theme } from "../../lib/styles/stitches.config";
const Content = styled("div", {
fontSize: "0.9em",
lineHeight: 1.7,
color: theme.colors.text,
"@medium": {
fontSize: "0.925em",
lineHeight: 1.85,
},
});
export default Content;