1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 09:25:22 -04:00
2022-03-03 09:18:26 -05:00

14 lines
313 B
TypeScript

import { styled, css } from "../../lib/styles/stitches.config";
const ListStyles = css({
marginLeft: "1.5em",
paddingLeft: 0,
});
export const UnorderedList = styled("ul", ListStyles);
export const OrderedList = styled("ol", ListStyles);
export const ListItem = styled("li", {
paddingLeft: "0.25em",
});