feat: align text left
This commit is contained in:
@@ -108,22 +108,24 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
|
|||||||
return (
|
return (
|
||||||
<Grid container>
|
<Grid container>
|
||||||
<Grid item xs={12} md={9} lg={9}>
|
<Grid item xs={12} md={9} lg={9}>
|
||||||
<button
|
<Button
|
||||||
onClick={toggleDrawer(true)}
|
onClick={toggleDrawer(true)}
|
||||||
style={{
|
variant="contained"
|
||||||
|
color="primary"
|
||||||
|
sx={{
|
||||||
color: 'white',
|
color: 'white',
|
||||||
position: 'fixed',
|
position: 'fixed',
|
||||||
background: '#ff00c3',
|
background: '#ff00c3',
|
||||||
border: 'none',
|
border: 'none',
|
||||||
padding: '30px 20px',
|
padding: '30px 20px',
|
||||||
width: 'calc(100% - 25%)',
|
width: 'calc(100% - 25%)',
|
||||||
textAlign: 'left',
|
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
|
justifyContent: 'flex-start',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Output Data Preview
|
Output Data Preview
|
||||||
</button>
|
</Button>
|
||||||
<SwipeableDrawer
|
<SwipeableDrawer
|
||||||
anchor="bottom"
|
anchor="bottom"
|
||||||
open={isOpen}
|
open={isOpen}
|
||||||
|
|||||||
Reference in New Issue
Block a user