fix: center align cert name in settings

pull/35608/head
Mrugesh Mohapatra 2019-06-11 16:44:14 +05:30
parent 38b8132d1a
commit 0d82d0a763
1 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ export class CertificationSettings extends Component {
renderCertifications = certName => (
<FullWidthRow key={certName}>
<Spacer />
<h3>{certName}</h3>
<h3 className='text-center'>{certName}</h3>
<Table>
<thead>
<tr>
@ -404,7 +404,7 @@ export class CertificationSettings extends Component {
return (
<FullWidthRow key={superBlock}>
<Spacer />
<h3>{certName}</h3>
<h3 className='text-center'>{certName}</h3>
<Form
buttonText={fullForm ? 'Claim Certification' : 'Save Progress'}
enableSubmit={fullForm}