Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Sep 8, 2023
1 parent 40a08fd commit 9ec1d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ css use BEM (Block Element Modifier) convention.

.sc-modal__video-video {
display: inline;
width: 100%;
height: 80vh;
}

.sc-modal__video-container{
Expand Down
2 changes: 1 addition & 1 deletion src/SlightCapture/video.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const captureAsync = (cv) => async (name,

const outputCanvas = document.createElement("canvas");
if (enableDefaultCss) {
outputCanvas.style = 'display:inline;width:100%;';
outputCanvas.style = 'display:inline;height:80vh;';
}
outputCanvas.className = 'sc-modal__video-video';
iDivContainerVideo.appendChild(outputCanvas);
Expand Down

0 comments on commit 9ec1d40

Please sign in to comment.