From 51f1755b14fea0553b84a3e318668ebb5198c810 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 13 Jul 2024 23:03:05 +0530 Subject: [PATCH] fix: rm changeBrowserDimension prop --- src/pages/RecordingPage.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/pages/RecordingPage.tsx b/src/pages/RecordingPage.tsx index 7a2f03a8..b3bcedea 100644 --- a/src/pages/RecordingPage.tsx +++ b/src/pages/RecordingPage.tsx @@ -10,6 +10,7 @@ import { useBrowserDimensionsStore } from "../context/browserDimensions"; import { useGlobalInfoStore } from "../context/globalInfo"; import { editRecordingFromStorage } from "../api/storage"; import { WhereWhatPair } from "@wbr-project/wbr-interpret"; +import styled from "styled-components"; interface RecordingPageProps { recordingName?: string; @@ -106,22 +107,29 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
{isLoaded ? - {/* + - */} + - {/* - - */} + + + : }
); }; + +const RecordingPageWrapper = styled.div` + position: relative; + width: 100vw; + height: 100vh; + overflow: hidden; +`; \ No newline at end of file