Added Privacy Policy Page

This commit is contained in:
Chris Kalani
2019-08-09 16:17:10 -07:00
parent 250c46d6a4
commit d179d6a1a2
5 changed files with 254 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import * as React from 'react';
import styled from 'styled-components';
interface ListItemProps {
children: string;
}
interface OrderedListProps {
marginBottom?: string;
}
export const UnorderedList = styled.ul`
list-style-type: disc;
padding-left: 20px;
`;
export const OrderedList = styled.ol<OrderedListProps>`
list-style-type: decimal;
padding-left: 20px;
margin-bottom: ${props => props.marginBottom};
`;
const Li = styled.li`
padding: 0 0 0.8rem 0.2rem;
position: relative;
line-height: 1.4rem;
text-align: left;
font-weight: 300;
opacity: 0.5;
@media (max-width: 768px) {
font-size: 15px;
}
`;
export const ListItem = (props: ListItemProps) => <Li>{props.children}</Li>;