mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:08:27 -04:00
15 lines
264 B
TypeScript
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;
|