1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 09:18:28 -04:00

16 lines
344 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",
});
export default UnorderedList;