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]) : [];
return (
<div style={{ width: '900px', height: '500px' }}>
<div>
<button
onClick={toggleDrawer(true)}
style={{
color: 'white',
position: 'fixed',
background: '#3f4853',
border: 'none',
padding: '10px 20px',
width: 900,
textAlign: 'left'
width: '100%',
textAlign: 'left',
bottom: 0,
}}>
Interpretation Log
</button>