feat: fix interpretation buttom to bottom
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user