fix(layout): Adjust layout to show youtube controls

pull/18004/head
Stuart Taylor 2018-08-09 15:14:31 +01:00 committed by mrugesh mohapatra
parent 35fd18262c
commit c80bc0086e
1 changed files with 3 additions and 2 deletions

View File

@ -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}
</div>
<Spacer />
</article>
);
}