Skip to content

Commit

Permalink
[C-4066] Fix edit-collectibles modal spacing (#7925)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored Mar 25, 2024
1 parent ec6c7a6 commit 35e4091
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ import {
PopupMenu,
PopupMenuItem,
Button,
Flex
Flex,
Box
} from '@audius/harmony'
import cn from 'classnames'
import {
Expand Down Expand Up @@ -739,14 +740,11 @@ const CollectiblesPage = (props: CollectiblesPageProps) => {
</div>
</div>
)}

<HarmonyButton
variant='primary'
size='small'
onClick={handleDoneClick}
>
Done
</HarmonyButton>
<Box m='l'>
<HarmonyButton variant='primary' onClick={handleDoneClick}>
Done
</HarmonyButton>
</Box>
</div>
</Modal>

Expand Down

0 comments on commit 35e4091

Please sign in to comment.