Browse Source

Merge pull request #1958 from visuddhinanda/agile

默认容器4:3
visuddhinanda 2 years ago
parent
commit
743124607a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dashboard/src/components/template/Video.tsx

+ 2 - 2
dashboard/src/components/template/Video.tsx

@@ -114,7 +114,7 @@ export const VideoCtl = ({
 
   const VideoCard = () => {
     return (
-      <Card title={title} bodyStyle={{ width: 550, height: 400 }}>
+      <Card title={title} bodyStyle={{ width: 550, height: 420 }}>
         <Video src={url} />
       </Card>
     );
@@ -122,7 +122,7 @@ export const VideoCtl = ({
 
   const VideoWindow = () => {
     return (
-      <div style={{ width: 550, height: 320 }}>
+      <div style={{ width: 550, height: 420 }}>
         <Video src={url} />
       </div>
     );