File size: 331 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// @flow
import theme from 'shared/theme';
import styled from 'styled-components';
export const PrivacyTermsList = styled.ul`
padding-top: 24px;
margin-left: 32px;
padding-bottom: 24px;
li {
font-size: 20px;
font-weight: 400;
color: ${theme.text.secondary};
line-height: 1.4;
margin-top: 12px;
}
`;
|