Files
developer-roadmap/components/tos-page/index.js

22 lines
277 B
JavaScript
Raw Normal View History

2019-10-19 21:24:16 +04:00
import styled from 'styled-components';
2019-10-19 22:49:47 +04:00
export const TosPage = styled.div`
h2 {
font-weight: 700;
margin-bottom: 16px;
}
2019-09-14 14:47:16 +04:00
h4 {
margin-top: 25px;
margin-bottom: 10px;
font-weight: 600;
}
2019-10-19 21:24:16 +04:00
2019-09-14 14:47:16 +04:00
p {
color: #999;
}
2019-10-19 21:24:16 +04:00
2019-09-14 14:47:16 +04:00
a {
color: #333;
}
2019-10-19 21:24:16 +04:00
`;