Added help center article link to step 2

This commit is contained in:
Mati Dastugue 2021-02-18 14:07:30 -03:00
parent 5839139b1e
commit e3973c8026
2 changed files with 21 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import InputAdornment from '@material-ui/core/InputAdornment'
import MenuItem from '@material-ui/core/MenuItem'
import { Icon, Link, Text } from '@gnosis.pm/safe-react-components'
import { makeStyles } from '@material-ui/core/styles'
import CheckCircle from '@material-ui/icons/CheckCircle'
import * as React from 'react'
@ -159,6 +160,18 @@ const SafeOwnersForm = (props): React.ReactElement => {
Add additional owners (e.g. wallets of your teammates) and specify how many of them have to confirm a
transaction before it gets executed. You can also add/remove owners and change the signature threshold after
your Safe is created.
<Link
href="https://help.gnosis-safe.io/en/articles/4772567-what-gnosis-safe-setup-should-i-use"
target="_blank"
className={classes.link}
rel="noreferrer"
title="Learn about which Safe setup to use"
>
<Text size="xl" as="span" color="primary">
Learn about which Safe setup to use
</Text>
<Icon size="sm" type="externalLink" color="primary" />
</Link>
</Paragraph>
</Block>
<Hairline />

View File

@ -8,6 +8,14 @@ export const styles = createStyles({
title: {
padding: `${md} ${lg}`,
},
link: {
paddingLeft: `${sm}`,
'& svg': {
position: 'relative',
top: '1px',
left: '3px',
},
},
owner: {
flexDirection: 'column',
marginTop: '12px',