mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 09:25:22 -04:00
14 lines
313 B
TypeScript
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",
|
|
});
|