Skip to content

Commit

Permalink
finished collectible list import
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee348 committed Dec 13, 2024
1 parent 09548f7 commit 5667fe6
Show file tree
Hide file tree
Showing 4 changed files with 387 additions and 401 deletions.
10 changes: 9 additions & 1 deletion src/components/wallet/collectibles/CollectibleList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,15 @@ export default function CollectibleList({
</Box>

{isImportCollectibleViewOpen && (
<Modal onClose={() => setIsImportCollectibleViewOpen(false)}>
<Modal
onClose={() => setIsImportCollectibleViewOpen(false)}
contentProps={{
style: {
scrollbarColor: 'gray black',
scrollbarWidth: 'thin'
}
}}
>
<ImportCollectible onClose={() => setIsImportCollectibleViewOpen(false)} />
</Modal>
)}
Expand Down
Loading

0 comments on commit 5667fe6

Please sign in to comment.