Left align and enlarge text in lecture

This commit is contained in:
Berkeley Martinez
2016-01-08 10:24:30 -08:00
parent 0e16ab515c
commit 5ffa12a77c

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>
));
},