Files
developer-roadmap/components/md-renderer/mdx-components/ul.tsx

17 lines
285 B
TypeScript
Raw Normal View History

2021-08-22 15:36:03 +02:00
import React from 'react';
import { UnorderedList } from '@chakra-ui/react';
2021-09-05 18:25:49 +02:00
import styled from 'styled-components';
2021-08-22 15:36:03 +02:00
2021-09-05 18:25:49 +02:00
export const Ul = styled.ul`
margin-left: 40px;
margin-bottom: 18px;
2021-09-24 10:33:05 +02:00
ul {
margin-top: 18px;
}
2021-09-05 18:25:49 +02:00
`;
2021-08-22 15:36:03 +02:00
2021-09-05 18:25:49 +02:00
export const Li = styled.li`
margin-bottom: 7px;
`;