[Improvement] Chenge font-weight: 100 to font-weight:400

This commit is contained in:
Qolzam
2018-02-07 19:41:14 +07:00
parent 83ceef1230
commit c0de49f7e4
17 changed files with 31 additions and 26 deletions

View File

@@ -38,7 +38,7 @@ import { ServerRequestStatusType } from 'actions/serverRequestStatusType'
const styles = (theme: any) => ({
textField: {
fontWeight: 100,
fontWeight: 400,
fontSize: '14px'
},
header: {
@@ -46,7 +46,7 @@ const styles = (theme: any) => ({
},
commentBody: {
color: 'black',
fontWeight: 100,
fontWeight: 400,
fontSize: '12px',
height: '100%',
border: 'none',
@@ -116,7 +116,7 @@ export class CommentGroupComponent extends Component<ICommentGroupComponentProps
},
writeCommentTextField: {
width: '100%',
fontWeight: 100,
fontWeight: 400,
fontSize: '14px'
},
progressbar: {
@@ -245,7 +245,7 @@ export class CommentGroupComponent extends Component<ICommentGroupComponentProps
const Author = () => (
<div>
<NavLink to={`/${comment.userId!}`}> <span className={classes.author}>{comment.userDisplayName}</span></NavLink><span style={{
fontWeight: 100,
fontWeight: 400,
fontSize: '8px'
}}>{moment.unix(comment.creationDate!).fromNow()}</span>
</div>