feat: change styling for browser content

This commit is contained in:
RohitR311
2025-01-08 23:31:31 +05:30
parent 521ce57a80
commit 56e2d78f22

View File

@@ -12,7 +12,6 @@ import {
} from "../../api/recording"; } from "../../api/recording";
import { Box } from "@mui/material"; import { Box } from "@mui/material";
import { InterpretationLog } from "../molecules/InterpretationLog"; import { InterpretationLog } from "../molecules/InterpretationLog";
import { Height } from "@mui/icons-material";
// TODO: Tab !show currentUrl after recordingUrl global state // TODO: Tab !show currentUrl after recordingUrl global state
export const BrowserContent = () => { export const BrowserContent = () => {
@@ -140,7 +139,7 @@ export const BrowserContent = () => {
}, [handleUrlChanged]); }, [handleUrlChanged]);
return ( return (
<div id="browser" style={{ display: "flex", flexDirection: "column" }} > <div id="browser">
<BrowserTabs <BrowserTabs
tabs={tabs} tabs={tabs}
handleTabChange={handleTabChange} handleTabChange={handleTabChange}
@@ -160,8 +159,4 @@ export const BrowserContent = () => {
); );
}; };
const BrowserContentWrapper = styled.div` const BrowserContentWrapper = styled.div``;
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;`;