File tree Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import styled from 'react-emotion';
2
2
import Card from '@material-ui/core/Card' ;
3
3
import Typography from '@material-ui/core/Typography' ;
4
4
import Chip from '@material-ui/core/Chip' ;
5
+ import { fontWeight } from '../../utils/styles/sizes' ;
5
6
6
7
export const CardWrap = styled ( Card ) ( {
7
8
'&&' : {
@@ -11,7 +12,7 @@ export const CardWrap = styled(Card)({
11
12
12
13
export const Heading = styled ( Typography ) ( {
13
14
'&&' : {
14
- fontWeight : 700 ,
15
+ fontWeight : fontWeight . bold ,
15
16
textTransform : 'capitalize' ,
16
17
} ,
17
18
} ) ;
Original file line number Diff line number Diff line change @@ -2,10 +2,11 @@ import Avatar from '@material-ui/core/Avatar';
2
2
import ListItem from '@material-ui/core/ListItem' ;
3
3
import Typography from '@material-ui/core/Typography' ;
4
4
import styled from 'react-emotion' ;
5
+ import { fontWeight } from '../../utils/styles/sizes' ;
5
6
6
7
export const Heading = styled ( Typography ) ( {
7
8
'&&' : {
8
- fontWeight : 700 ,
9
+ fontWeight : fontWeight . bold ,
9
10
textTransform : 'capitalize' ,
10
11
} ,
11
12
} ) ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { breakpoints } from '../../utils/styles/media';
13
13
import Ico from '../Icon' ;
14
14
import Label from '../Label' ;
15
15
import colors from '../../utils/styles/colors' ;
16
+ import { fontWeight } from '../../utils/styles/sizes' ;
16
17
17
18
export const OverviewItem = styled ( 'span' ) `
18
19
&& {
@@ -52,7 +53,7 @@ export const Published = styled('span')({
52
53
export const Text = styled ( Label ) ( {
53
54
'&&' : {
54
55
fontSize : '12px' ,
55
- fontWeight : 500 ,
56
+ fontWeight : fontWeight . semiBold ,
56
57
color : colors . greyLight2 ,
57
58
} ,
58
59
} ) ;
Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ import Typography from '@material-ui/core/Typography';
5
5
6
6
import Github from '../../icons/GitHub' ;
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 Typography from '@material-ui/core/Typography' ;
3
3
import { default as MuiListItemText } from '@material-ui/core/ListItemText' ;
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
} ,
9
10
} ) ;
10
11
Original file line number Diff line number Diff line change 1
1
import styled from 'react-emotion' ;
2
2
import Typography from '@material-ui/core/Typography' ;
3
3
import { default as MuiListItemText } from '@material-ui/core/ListItemText' ;
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
} ,
9
10
} ) ;
10
11
You can’t perform that action at this time.
0 commit comments