Introduce a max width in Threshold view when opening Safe
This commit is contained in:
parent
317c990993
commit
2127dc44f5
|
@ -20,7 +20,7 @@ type Props = {
|
||||||
|
|
||||||
const styles = () => ({
|
const styles = () => ({
|
||||||
root: {
|
root: {
|
||||||
display: 'flex',
|
maxWidth: '450px',
|
||||||
},
|
},
|
||||||
owners: {
|
owners: {
|
||||||
paddingLeft: md,
|
paddingLeft: md,
|
||||||
|
@ -44,7 +44,7 @@ const SafeThreshold = ({ classes, values }: Props) => {
|
||||||
const numOwners = getNumOwnersFrom(values)
|
const numOwners = getNumOwnersFrom(values)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<Block className={classes.root}>
|
||||||
<Block className={classes.title} margin="md">
|
<Block className={classes.title} margin="md">
|
||||||
<Paragraph size="lg" color="primary" weight="bolder" noMargin>
|
<Paragraph size="lg" color="primary" weight="bolder" noMargin>
|
||||||
Set the required owner confirmations:
|
Set the required owner confirmations:
|
||||||
|
@ -85,7 +85,7 @@ const SafeThreshold = ({ classes, values }: Props) => {
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</React.Fragment>
|
</Block>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue