From c80bc0086e9cef1c2f843bead3160ad4c7aaed85 Mon Sep 17 00:00:00 2001 From: Stuart Taylor Date: Thu, 9 Aug 2018 15:14:31 +0100 Subject: [PATCH] fix(layout): Adjust layout to show youtube controls --- news/routes/Show/Show.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/news/routes/Show/Show.js b/news/routes/Show/Show.js index f06c36549a..64323e1a86 100644 --- a/news/routes/Show/Show.js +++ b/news/routes/Show/Show.js @@ -6,7 +6,7 @@ import Youtube from 'react-youtube'; import { Image } from 'react-bootstrap'; import Author from './components/Author'; -import { Loader } from '../../../common/app/helperComponents'; +import { Loader, Spacer } from '../../../common/app/helperComponents'; import { getArticleById, postPopularityEvent } from '../../utils/ajax'; const propTypes = { @@ -62,7 +62,7 @@ const styles = ` position: absolute; left: 0; width: 100%; - height: 100%; + height: 95%; } `; @@ -204,6 +204,7 @@ class ShowArticle extends Component { /> ) : null} + ); }