Skip to content

Commit

Permalink
fix: implement Figma designs
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Oct 27, 2022
1 parent ee90aaf commit 97c89a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/new-safe/steps/Step3/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ const STEP_3_FORM_ID = 'create-safe-step-3-form'
const ReviewRow = ({ name, value }: { name: string; value: ReactElement }) => {
return (
<>
<Grid item xs={4}>
<Grid item xs={3}>
<Typography>{name}</Typography>
</Grid>
<Grid item xs={8}>
<Grid item xs={9}>
{value}
</Grid>
</>
Expand Down Expand Up @@ -106,7 +106,7 @@ const CreateSafeStep3 = (): ReactElement => {
value={
<Box className={css.ownersArray}>
{safeOwners.map((owner, index) => (
<EthHashInfo address={owner.address} showPrefix={false} key={index} />
<EthHashInfo address={owner.address} shortAddress={false} showPrefix={false} key={index} />
))}
</Box>
}
Expand All @@ -131,7 +131,7 @@ const CreateSafeStep3 = (): ReactElement => {
value={
<Typography variant="body1">
<b>
{totalFee} {chain?.nativeCurrency.symbol}
&asymp; {totalFee} {chain?.nativeCurrency.symbol}
</b>
</Typography>
}
Expand Down

0 comments on commit 97c89a6

Please sign in to comment.