Skip to content

Commit

Permalink
update copy for migration message (#297)
Browse files Browse the repository at this point in the history
* update copy for migration message

* update link color & add underline on hover

Co-authored-by: rawasabi <[email protected]>
  • Loading branch information
ben2x4 and rawasabi authored Dec 24, 2022
1 parent 82bb4d8 commit 5de8ce0
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions components/MigrationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ export const MigrationCard = () => {
return (
<StyledCard>
<Text>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.{' '}
<Link href="https://www.junonetwork.io/" passHref>
<a>Link</a>
Junoswap is migrating liquidity to WYND DEX. As part of this transition,
most RAW pools have had swaps and deposits frozen. These pools will be
automatically migrated upon the launch of WYND DEX. Users with liquidity
in these pools may still withdraw funds if they do not want to be
migrated. All other pools are trading as normal and most will also be
automatically migrated. Please see RAW DAO prop 18 for the full details
and list of pools eligible for automatic migration.{' '}
<Link href="https://www.rawdao.zone/vote/18" passHref>
<StyledA>More details</StyledA>
</Link>
</Text>
</StyledCard>
Expand All @@ -26,3 +26,10 @@ const StyledCard = styled('div', {
backgroundColor: '$colors$dark10',
borderRadius: '8px',
})

const StyledA = styled('a', {
color: '$textColors$brand',
'&:hover': {
textDecoration: 'underline',
},
})

0 comments on commit 5de8ce0

Please sign in to comment.