summaryrefslogtreecommitdiff
path: root/src/common/components/Scanner/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/components/Scanner/index.tsx')
-rw-r--r--src/common/components/Scanner/index.tsx10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/common/components/Scanner/index.tsx b/src/common/components/Scanner/index.tsx
index c21633f..a5c907d 100644
--- a/src/common/components/Scanner/index.tsx
+++ b/src/common/components/Scanner/index.tsx
@@ -29,9 +29,13 @@ const Scanner = (props: Props) => {
}
return (
- <div className="relative w-full h-[125px] overflow-hidden">
- <video ref={ref} className="w-full h-full object-cover" />
- </div>
+ // <div className="relative w-full h-[125px] overflow-hidden">
+ // <video ref={ref} className="w-full h-full object-cover" />
+ // </div>
+ <div className="relative w-full h-[350px] overflow-hidden">
+ <video ref={ref} onClick={restartCam} className={styles.video} />
+ <div className={styles.videoFrame} />
+</div>
)
}