From 2127dc44f59b7a54fa7e052abbff2ef8c8e5517a Mon Sep 17 00:00:00 2001 From: apanizo Date: Mon, 8 Oct 2018 11:57:56 +0200 Subject: [PATCH] Introduce a max width in Threshold view when opening Safe --- src/routes/open/components/SafeThresholdForm/index.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/open/components/SafeThresholdForm/index.jsx b/src/routes/open/components/SafeThresholdForm/index.jsx index 48a9e600..7a3663b7 100644 --- a/src/routes/open/components/SafeThresholdForm/index.jsx +++ b/src/routes/open/components/SafeThresholdForm/index.jsx @@ -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 ( - + Set the required owner confirmations: @@ -85,7 +85,7 @@ const SafeThreshold = ({ classes, values }: Props) => { - + ) }