update Home Element Position

This commit is contained in:
lb
2024-04-16 10:28:14 +08:00
parent 43635ff398
commit e796a07e66
4 changed files with 54 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
// import cls from "./index.module.css";
import "./video-monitor.css";
function VideoMonitor(props) {
return (
<div className="video-monitor">
<h2>泡界线监控</h2>
<div className="video-container">
<div></div>
<div></div>
</div>
</div>
);
}
export default VideoMonitor;

View File

@@ -0,0 +1,30 @@
.video-monitor {
display: flex;
flex-direction: column;
margin-left: 80px;
height: 200px;
width: 500px;
}
.video-monitor > h2 {
margin: 0;
padding: 10px 0;
background: #16253c;
color: #fff;
font-weight: 400;
letter-spacing: 2px;
font-size: 18px;
text-align: center;
}
.video-monitor > .video-container {
display: flex;
gap: 8px;
flex: 1;
}
.video-container > div {
flex: 1;
height: 100%;
background: #ccc1;
}

View File

@@ -1,6 +1,7 @@
import React from 'react';
import Item2 from './RightTable';
import Item1 from '../../../Common/TimeFireDir';
// import Item1 from '../../../Common/TimeFireDir';
import Item1 from '../../../Common/VideoMonitor';
import cls from './index.module.scss';