22 lines
277 B
JavaScript
22 lines
277 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const TosPage = styled.div`
|
|
h2 {
|
|
font-weight: 700;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h4 {
|
|
margin-top: 25px;
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
p {
|
|
color: #999;
|
|
}
|
|
|
|
a {
|
|
color: #333;
|
|
}
|
|
`; |