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