Introduce a max width in Threshold view when opening Safe

This commit is contained in:
apanizo 2018-10-08 11:57:56 +02:00
parent 317c990993
commit 2127dc44f5
1 changed files with 3 additions and 3 deletions

View File

@ -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>
) )
} }