wip: scrollable recording ui

This commit is contained in:
karishmas6
2024-10-18 19:07:31 +05:30
parent 7a1f3be2eb
commit ba0bea348b
3 changed files with 7 additions and 5 deletions

View File

@@ -106,7 +106,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
const columns = tableData.length > 0 ? Object.keys(tableData[0]) : [];
return (
<div>
<div style={{ width: '900px', height: '500px' }}>
<button
onClick={toggleDrawer(true)}
style={{
@@ -114,7 +114,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
background: '#3f4853',
border: 'none',
padding: '10px 20px',
width: 1280,
width: 900,
textAlign: 'left'
}}>
Interpretation Log
@@ -129,7 +129,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
background: 'white',
color: 'black',
padding: '10px',
height: 720,
height: 500,
width: width - 10,
display: 'flex'
}