feat: fix interpretation buttom to bottom

This commit is contained in:
karishmas6
2024-10-18 23:34:33 +05:30
parent c2fc94ab0b
commit 78c88416f4

View File

@@ -106,16 +106,18 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
const columns = tableData.length > 0 ? Object.keys(tableData[0]) : []; const columns = tableData.length > 0 ? Object.keys(tableData[0]) : [];
return ( return (
<div style={{ width: '900px', height: '500px' }}> <div>
<button <button
onClick={toggleDrawer(true)} onClick={toggleDrawer(true)}
style={{ style={{
color: 'white', color: 'white',
position: 'fixed',
background: '#3f4853', background: '#3f4853',
border: 'none', border: 'none',
padding: '10px 20px', padding: '10px 20px',
width: 900, width: '100%',
textAlign: 'left' textAlign: 'left',
bottom: 0,
}}> }}>
Interpretation Log Interpretation Log
</button> </button>