Passed
Push — master ( f4d9aa...5c318d )
by Huu-Phat
03:28 queued 11s
created

modules/home/components/sideProject/Dates.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 14
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 4
mnd 0
bc 0
fnc 1
dl 0
loc 14
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
ccs 1
cts 1
cp 1
rs 10
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