From 268bbe52e65b40f1a02a8c386b7739cd9c454d8b Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Fri, 8 Jan 2016 10:24:30 -0800 Subject: [PATCH] Left align and enlarge text in lecture --- common/app/routes/Hikes/components/Lecture.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/app/routes/Hikes/components/Lecture.jsx b/common/app/routes/Hikes/components/Lecture.jsx index 3f18b97b89..77d7fe5c9c 100644 --- a/common/app/routes/Hikes/components/Lecture.jsx +++ b/common/app/routes/Hikes/components/Lecture.jsx @@ -52,7 +52,11 @@ export default contain( renderTranscript(transcript, dashedName) { return transcript.map((line, index) => ( -

{ line }

+

+ { line } +

)); },