Left align and enlarge text in lecture

pull/6034/head
Berkeley Martinez 2016-01-08 10:24:30 -08:00
parent 0e16ab515c
commit 5ffa12a77c
1 changed files with 5 additions and 1 deletions

View File

@ -52,7 +52,11 @@ export default contain(
renderTranscript(transcript, dashedName) {
return transcript.map((line, index) => (
<p key={ dashedName + index }>{ line }</p>
<p
className='lead text-left'
key={ dashedName + index }>
{ line }
</p>
));
},