wip: scrollable recording ui

This commit is contained in:
karishmas6
2024-10-18 19:07:55 +05:30
parent ba0bea348b
commit 4b9596f582

View File

@@ -113,14 +113,14 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
return (
<ActionProvider>
<BrowserStepsProvider>
<div>
<div style={{ overflow: 'hidden', height: '100%' }}>
{isLoaded ? (
<Grid container direction="row" spacing={0}>
<Grid id="browser-content" ref={browserContentRef} item xs={10} sx={{ width: '900px', height: '500px' }}>
<Grid id="browser-content" ref={browserContentRef} item xs={10} sx={{ overflow: 'hidden', height: '100vh'}}>
<BrowserContent />
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
</Grid>
<Grid item xs={2}>
<Grid item xs={2} sx={{ overflowY: 'auto', height: '100vh'}}>
<RightSidePanel onFinishCapture={handleShowOutputData} />
</Grid>
</Grid>