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 = () => ({
root: {
display: 'flex',
maxWidth: '450px',
},
owners: {
paddingLeft: md,
@ -44,7 +44,7 @@ const SafeThreshold = ({ classes, values }: Props) => {
const numOwners = getNumOwnersFrom(values)
return (
<React.Fragment>
<Block className={classes.root}>
<Block className={classes.title} margin="md">
<Paragraph size="lg" color="primary" weight="bolder" noMargin>
Set the required owner confirmations:
@ -85,7 +85,7 @@ const SafeThreshold = ({ classes, values }: Props) => {
</Paragraph>
</Col>
</Row>
</React.Fragment>
</Block>
)
}