main
Anton Zhuravlev 1 year ago
parent 420015b794
commit 3b95f1e969

@ -1,64 +1,66 @@
.container {
display: flex;
flex-direction: column;
align-items: flex-end;
flex: 1 1 auto;
padding: 20px;
background-color: var(--white);
border-radius: var(--border-large);
}
.select {
border: 1px solid var(--black);
border-radius: 15px;
display: flex;
align-items: center;
& div {
padding: 5px 15px;
display: flex;
flex-direction: column;
gap: 40px;
align-items: flex-end;
}
flex: 1 1 auto;
padding: 20px;
background-color: var(--white);
border-radius: var(--border-large);
}
& div:not(:first-child) {
flex-direction: row;
gap: 5px;
.select {
border: 1px solid var(--black);
border-radius: 15px;
display: flex;
align-items: center;
}
& .date {
color: var(--green);
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& div {
padding: 5px 15px;
display: flex;
flex-direction: column;
align-items: flex-end;
}
& div:not(:first-child) {
flex-direction: row;
gap: 5px;
align-items: center;
}
& .date {
color: var(--green);
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .time {
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .time {
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .line {
height: 100%;
width: 1px;
background-color: var(--black);
}
& .line {
height: 100%;
width: 1px;
background-color: var(--black);
}
& .name {
color: var(--green);
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .name {
color: var(--green);
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .number {
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
& .number {
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: normal;
}
}

@ -1,6 +1,7 @@
import cls from './camera.module.scss';
import {useEffect, useState} from "react";
import video from "../../../../apps/crud/assets/video/bitch lasagna.mp4"
/* eslint-disable-next-line */
export interface CameraProps {
}
@ -50,9 +51,7 @@ export function Camera(props: CameraProps) {
</svg>
</div>
</div>
<div>
<video src={video} controls={true} autoPlay={true}/>
</div>
<video src={video} controls={true} autoPlay={true}/>
</div>
);
}

Loading…
Cancel
Save