Browse Source

video size fix

lyc8503 3 years ago
parent
commit
ad06ecd8d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend_refactor/src/containers/TaskList.js

+ 1 - 1
frontend_refactor/src/containers/TaskList.js

@@ -77,7 +77,7 @@ function renderResult(x, data) {
         if (result.file !== undefined) {
             video_element = (
                 <Card type="inner" title="运动3D还原">
-                    <video controls>
+                    <video controls style={{width: "80%"}}>
                         <source src={result.file}/>
                     </video>
                 </Card>