File tree Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1
1
import styled from 'react-emotion' ;
2
2
import ListItem from '@material-ui/core/ListItem' ;
3
3
import Typography from '@material-ui/core/Typography' ;
4
+ import { fontWeight } from '../../utils/styles/sizes' ;
4
5
5
6
export const Heading = styled ( Typography ) ( {
6
7
'&&' : {
7
- fontWeight : 700 ,
8
+ fontWeight : fontWeight . bold ,
8
9
textTransform : 'capitalize' ,
9
10
} ,
10
11
} ) ;
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import styled from 'react-emotion';
2
2
import Typography from '@material-ui/core/Typography' ;
3
3
import { default as MuiFab } from '@material-ui/core/Fab' ;
4
4
import colors from '../../utils/styles/colors' ;
5
+ import { fontWeight } from '../../utils/styles/sizes' ;
5
6
6
7
export const Details = styled ( 'span' ) ( {
7
8
display : 'flex' ,
@@ -20,7 +21,7 @@ export const Content = styled('div')({
20
21
21
22
export const Heading = styled ( Typography ) ( {
22
23
'&&' : {
23
- fontWeight : 700 ,
24
+ fontWeight : fontWeight . bold ,
24
25
marginBottom : '10px' ,
25
26
textTransform : 'capitalize' ,
26
27
} ,
Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ import ListItem from '@material-ui/core/ListItem';
5
5
import Typography from '@material-ui/core/Typography' ;
6
6
7
7
import colors from '../../utils/styles/colors' ;
8
+ import { fontWeight } from '../../utils/styles/sizes' ;
8
9
9
10
export const Heading = styled ( Typography ) ( {
10
11
'&&' : {
11
- fontWeight : 700 ,
12
+ fontWeight : fontWeight . bold ,
12
13
textTransform : 'capitalize' ,
13
14
} ,
14
15
} ) ;
Original file line number Diff line number Diff line change 1
1
import styled from 'react-emotion' ;
2
2
import ListItem from '@material-ui/core/ListItem' ;
3
3
import Typography from '@material-ui/core/Typography' ;
4
+ import { fontWeight } from '../../utils/styles/sizes' ;
4
5
5
6
export const Heading = styled ( Typography ) ( {
6
7
'&&' : {
7
- fontWeight : 700 ,
8
+ fontWeight : fontWeight . bold ,
8
9
textTransform : 'capitalize' ,
9
10
} ,
10
11
} ) ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export const InnerMobileNavBar = styled('div')({
49
49
backgroundColor : colors . greyLight ,
50
50
color : colors . white ,
51
51
width : '100%' ,
52
- padding : '0px 5px' ,
52
+ padding : '0 5px' ,
53
53
margin : '0 10px 0 0' ,
54
54
} ,
55
55
} ) ;
Original file line number Diff line number Diff line change 1
1
import styled , { css } from 'react-emotion' ;
2
+ import colors from '../../utils/styles/colors' ;
2
3
3
4
export const Content = styled ( 'div' ) ( {
4
5
'&&' : {
5
- backgroundColor : '#ffffff' ,
6
+ backgroundColor : colors . white ,
6
7
flex : 1 ,
7
8
display : 'flex' ,
8
9
position : 'relative' ,
Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ export const OverviewItem = styled('span')`
36
36
37
37
export const Icon = styled ( Ico ) ( {
38
38
'&&' : {
39
- margin : '2px 10px 0px 0' ,
39
+ margin : '2px 10px 0 0' ,
40
40
fill : colors . greyLight2 ,
41
41
} ,
42
42
} ) ;
43
43
44
44
export const Published = styled ( 'span' ) ( {
45
45
'&&' : {
46
46
color : colors . greyLight2 ,
47
- margin : '0px 5px 0px 0px ' ,
47
+ margin : '0 5px 0 0 ' ,
48
48
} ,
49
49
} ) ;
50
50
You can’t perform that action at this time.
0 commit comments