Passed
Push — master ( 67133e...c59620 )
by Huu-Phat
01:48 queued 10s
created

cms/src/dashboard/components/GetStarted/Container.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 13
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 10
mnd 0
bc 0
fnc 1
dl 0
loc 13
ccs 1
cts 1
cp 1
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10
1
import { styled } from '@material-ui/core/styles'
2
3 5
const Container = styled('div')(({ theme }) => ({
4
  height: '100%',
5
  margin: `${theme.spaces.small}px 0`,
6
  padding: `${theme.spaces.medium}px`,
7
  border: `1px solid ${theme.colors.grey1}`,
8
  boxShadow: '0 1px 1px rgba(0,0,0,.04)',
9
  background: theme.colors.primaryBg,
10
  flexGrow: 1
11
}))
12
13
export default Container
14