Skip to content

Commit

Permalink
color change for watchlist only
Browse files Browse the repository at this point in the history
  • Loading branch information
cuteolaf committed Oct 22, 2024
1 parent ee6d32e commit 6863594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/paras/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ const ParachainManagement = () => {
</Typography>
</Box>
<Box sx={{ display: 'flex', gap: '1.5rem', height: '2.75rem' }}>
<Button color='yellowDark' onClick={() => watchAllParas((prev) => !prev)}>
<Button
color={watchAll ? 'yellowDark' : 'greenPrimary'}
onClick={() => watchAllParas((prev) => !prev)}
>
Watchlist Only
</Button>
<Button onClick={() => openReserveModal(true)}>Reserve New Para</Button>
Expand Down

0 comments on commit 6863594

Please sign in to comment.