Skip to content

Commit

Permalink
migrate updates (#10797)
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebemirman authored Mar 8, 2021
1 parent b0aa674 commit d9c20f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
14 changes: 7 additions & 7 deletions packages/augur-migration/src/modules/migrate/migrate.styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@
justify-content: center;
align-items: center;

> svg {
margin: 0 @size-24;
}

> div {
.text-20-semi-bold;

Expand All @@ -50,6 +46,10 @@
justify-content: center;
align-items: center;

&:first-of-type {
margin-right: @size-24;
}

> span:first-of-type {
.text-16;

Expand Down Expand Up @@ -81,9 +81,9 @@
> div:first-of-type {
flex-direction: column;

> svg {
margin: @size-24 0;
transform: rotate(90deg);
> div:first-of-type {
margin: 0;
margin-bottom: @size-24;
}
}

Expand Down
5 changes: 2 additions & 3 deletions packages/augur-migration/src/modules/migrate/migrate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,15 @@ export const Migrate = () => {
[Styles.grey]: createBigNumber(formattedLegacyRep.value).eq(ZERO),
})}
>
<span>V1 REP</span>
<span>V1 REP Balance</span>
<span>{formattedLegacyRep.formatted}</span>
</div>
{PointedArrow}
<div
className={classNames({
[Styles.grey]: createBigNumber(formattedRep.value).eq(ZERO),
})}
>
<span>V2 REP</span>
<span>V2 REP Balance</span>
<span>{formattedRep.formatted}</span>
</div>
</div>
Expand Down

0 comments on commit d9c20f7

Please sign in to comment.