Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 14 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | import styled from 'styled-components/macro' |
||
2 | |||
3 | const Dates = styled.p` |
||
4 | 4 | color: ${props => props.theme.colors.grey}; |
|
5 | margin-left: 80px; |
||
6 | margin-bottom: 10px; |
||
7 | |||
8 | @media screen and (max-width: 1000px) { |
||
9 | margin-left: 0; |
||
10 | text-align: center; |
||
11 | } |
||
12 | ` |
||
13 | |||
14 | export default Dates |
||
15 |