Skip to content

Commit

Permalink
Merge pull request #33 from dsrvlabs/develop
Browse files Browse the repository at this point in the history
refactor: change order of chain select buttons
  • Loading branch information
altpd13 authored Aug 28, 2024
2 parents 9cb17b2 + 11dcb9c commit f5b19f2
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/components/ChainSelectButtonContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,40 +63,40 @@ export const ChainSelectButtonContainer: FunctionComponent<InterfaceProps> = ({
style={{ cursor: 'pointer' }}
action
onClick={() => {
setChain('Aptos');
setChain('Injective');
}}
>
<img src={Aptos} style={{ width: '35px', marginRight: '20px' }} alt="Aptos logo" />
<b>Aptos (MoveVM)</b>
<img
src={Injective}
style={{ width: '35px', marginRight: '20px' }}
alt="Injective logo"
/>
<b>Injective</b>
<Badge bg="danger" style={{ position: 'absolute', right: '10px', top: '0px' }}>
New
</Badge>
</ListGroup.Item>
<ListGroup.Item
as="li"
style={{ cursor: 'pointer' }}
action
onClick={() => {
setChain('Celo');
setChain('Aptos');
}}
>
<img src={Celo} style={{ width: '35px', marginRight: '20px' }} alt="Celo logo" />
<b>CELO (EVM)</b>
<img src={Aptos} style={{ width: '35px', marginRight: '20px' }} alt="Aptos logo" />
<b>Aptos (MoveVM)</b>
</ListGroup.Item>
<ListGroup.Item
as="li"
style={{ cursor: 'pointer' }}
action
onClick={() => {
setChain('Injective');
setChain('Celo');
}}
>
<img
src={Injective}
style={{ width: '35px', marginRight: '20px' }}
alt="Injective logo"
/>
<b>Injective</b>
<Badge bg="danger" style={{ position: 'absolute', right: '10px', top: '0px' }}>
New
</Badge>
<img src={Celo} style={{ width: '35px', marginRight: '20px' }} alt="Celo logo" />
<b>CELO (EVM)</b>
</ListGroup.Item>
<ListGroup.Item
as="li"
Expand Down

0 comments on commit f5b19f2

Please sign in to comment.