feat: set style of browser content & right panel
This commit is contained in:
@@ -114,16 +114,16 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
return (
|
return (
|
||||||
<ActionProvider>
|
<ActionProvider>
|
||||||
<BrowserStepsProvider>
|
<BrowserStepsProvider>
|
||||||
<div style={{ height: '100vh', display: 'flex' }}>
|
<div id="browser-recorder">
|
||||||
{isLoaded ? (
|
{isLoaded ? (
|
||||||
<>
|
<>
|
||||||
<Grid container direction="row" style={{ flexGrow: 1, height: '100%' }}>
|
<Grid container direction="row" style={{ flexGrow: 1, height: '100%' }}>
|
||||||
<Grid item xs={12} md={10} lg={10} style={{ height: '100%', overflow: 'hidden' }}>
|
<Grid item xs={12} md={9} lg={9} style={{ height: '100%', overflow: 'hidden' }}>
|
||||||
<div style={{ height: '100%', overflow: 'auto' }}>
|
<div style={{ height: '100%', overflow: 'auto' }}>
|
||||||
<BrowserContent />
|
<BrowserContent />
|
||||||
</div>
|
</div>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={12} md={2} lg={2} style={{ height: '100%', overflowY: 'auto' }}>
|
<Grid item xs={12} md={3} lg={3} style={{ height: '100%', overflowY: 'auto' }}>
|
||||||
<div className="right-side-panel" style={{ height: '100%' }}>
|
<div className="right-side-panel" style={{ height: '100%' }}>
|
||||||
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user