feat: set position relative of parent grid of browser
This commit is contained in:
@@ -119,13 +119,13 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
{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={9} lg={9} style={{ height: '100%', overflow: 'hidden' }}>
|
<Grid item xs={12} md={9} lg={9} style={{ height: '100%', overflow: 'hidden', position: 'relative' }}>
|
||||||
<div style={{ height: '100%', overflow: 'auto' }}>
|
<div style={{ height: '100%', overflow: 'auto' }}>
|
||||||
<BrowserContent />
|
<BrowserContent />
|
||||||
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
||||||
</div>
|
</div>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={12} md={3} lg={3} style={{ height: '100%', overflowY: 'auto' }}>
|
<Grid item xs={12} md={3} lg={3} style={{ height: '100%', overflow: 'hidden' }}>
|
||||||
<div className="right-side-panel" style={{ height: '100%' }}>
|
<div className="right-side-panel" style={{ height: '100%' }}>
|
||||||
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
||||||
<BrowserRecordingSave />
|
<BrowserRecordingSave />
|
||||||
|
|||||||
Reference in New Issue
Block a user