Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const ArtistCoinsExploreScreen = () => {
<Header searchValue={searchValue} setSearchValue={setSearchValue} />
)}
>
<Paper mh='l' mt='xl'>
<Paper mh='l' mv='xl' border='default' borderRadius='m' flex={1}>
<Flex
row
ph='l'
Expand Down Expand Up @@ -202,7 +202,7 @@ export const ArtistCoinsExploreScreen = () => {
) : shouldShowNoCoinsContent ? (
<NoCoinsContent />
) : (
<Flex pt='s' pb='4xl'>
<Flex pt='s'>
{coins.map((coin) => (
<CoinRow
key={coin.mint}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const DesktopArtistCoinsExplorePage = () => {
</Box>
</Flex>

<Paper p='xl' gap='xl'>
<Paper p='xl' gap='xl' border='default' borderRadius='m'>
<Flex gap='xl' w='100%' wrap='wrap'>
<Flex
column
Expand All @@ -139,6 +139,7 @@ const DesktopArtistCoinsExplorePage = () => {
alignItems='center'
border='default'
borderRadius='m'
css={{ overflow: 'hidden' }}
>
<Text variant='body' size='s'>
{messages.required}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,14 @@ export const ArtistCoinsTable = ({ searchQuery }: ArtistCoinsTableProps) => {

if (isPending) {
return (
<Paper w='100%' justifyContent='center' alignItems='center' p='4xl'>
<Paper
w='100%'
justifyContent='center'
alignItems='center'
p='4xl'
border='default'
borderRadius='m'
>
<LoadingSpinner
style={{ height: spacing.unit8, width: spacing.unit8 }}
/>
Expand All @@ -407,6 +414,8 @@ export const ArtistCoinsTable = ({ searchQuery }: ArtistCoinsTableProps) => {
alignItems='center'
p='4xl'
gap='l'
border='default'
borderRadius='m'
>
<IconSearch size='2xl' color='default' />
<Text variant='heading' size='m'>
Expand All @@ -420,7 +429,7 @@ export const ArtistCoinsTable = ({ searchQuery }: ArtistCoinsTableProps) => {
}

return (
<Flex ref={tableRef}>
<Flex ref={tableRef} border='default' borderRadius='m'>
<Table
columns={columns}
data={coins}
Expand Down