diff options
author | kimdahey <claire_kim1@brown.edu> | 2019-09-14 17:08:11 -0400 |
---|---|---|
committer | kimdahey <claire_kim1@brown.edu> | 2019-09-14 17:08:11 -0400 |
commit | 8b63da6bb4413214c70cbce2851e63e9bc42fc3b (patch) | |
tree | 671a95756306d26d5088eaba05b54cbacc6d29a3 /src | |
parent | ee1d385f03bc1c0347d6c365e3164893bb34093b (diff) |
cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/webcam/DashWebCam.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/webcam/DashWebCam.tsx b/src/client/views/webcam/DashWebCam.tsx index 3c632832a..cd908b251 100644 --- a/src/client/views/webcam/DashWebCam.tsx +++ b/src/client/views/webcam/DashWebCam.tsx @@ -344,7 +344,7 @@ export class DashWebCam extends React.Component<CollectionFreeFormDocumentViewPr let content = - <div className="webcam-cont" style={{ position: "absolute" }} onWheel={this.onPostWheel} onPointerDown={this.onPostPointer} onPointerMove={this.onPostPointer} onPointerUp={this.onPostPointer}> + <div className="webcam-cont" style={{ width: "100%", height: "100%", position: "absolute" }} onWheel={this.onPostWheel} onPointerDown={this.onPostPointer} onPointerMove={this.onPostPointer} onPointerUp={this.onPostPointer}> <video autoPlay src={this.src} |