Added Terms of Service page and footer links

This commit is contained in:
Chris Kalani
2019-08-09 16:52:09 -07:00
parent d179d6a1a2
commit 2cf9c9b7df
5 changed files with 502 additions and 5 deletions

View File

@@ -8,10 +8,14 @@ interface ListItemProps {
interface OrderedListProps {
marginBottom?: string;
}
interface UnorderedListProps {
marginBottom?: string;
}
export const UnorderedList = styled.ul`
export const UnorderedList = styled.ul<UnorderedListProps>`
list-style-type: disc;
padding-left: 20px;
margin-bottom: ${props => props.marginBottom};
`;
export const OrderedList = styled.ol<OrderedListProps>`