app: allow doc videos to be full screen

Without this, the videos can be somewhat hard to see.
This commit is contained in:
Laurens Valk
2020-06-05 16:47:38 +02:00
committed by laurensvalk
parent 6c849b50f0
commit d0f5a42c85
+5 -1
View File
@@ -37,7 +37,11 @@ function App(): JSX.Element {
</Row>
</Col>
<Col lg={4} className="embed-responsive d-lg-block d-md-none">
<iframe src="https://docs.pybricks.com" title="docs"></iframe>
<iframe
src="https://docs.pybricks.com"
allowFullScreen={true}
title="docs"
></iframe>
</Col>
</Row>
</Container>