mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-25 16:39:02 +02:00
17 lines
285 B
TypeScript
17 lines
285 B
TypeScript
import React from 'react';
|
|
import { UnorderedList } from '@chakra-ui/react';
|
|
import styled from 'styled-components';
|
|
|
|
export const Ul = styled.ul`
|
|
margin-left: 40px;
|
|
margin-bottom: 18px;
|
|
|
|
ul {
|
|
margin-top: 18px;
|
|
}
|
|
`;
|
|
|
|
export const Li = styled.li`
|
|
margin-bottom: 7px;
|
|
`;
|