1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 04:58:26 -04:00
jarv.is/components/Content/Content.tsx
2022-03-03 09:18:26 -05:00

15 lines
247 B
TypeScript

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