Commit 63448a8f authored by Max Alekseenko's avatar Max Alekseenko

fix search input margin on mobile

parent c4ba8c98
...@@ -57,7 +57,16 @@ const ListItem = ({ app, onInfoClick, isFavorite, onFavoriteClick, isLoading, on ...@@ -57,7 +57,16 @@ const ListItem = ({ app, onInfoClick, isFavorite, onFavoriteClick, isLoading, on
<ListItemMobile <ListItemMobile
rowGap={ 3 } rowGap={ 3 }
py={ 3 } py={ 3 }
sx={{ ':first-child': { borderTop: 'none' }, ':last-child': { borderBottom: 'none' } }} sx={{
':first-child': {
borderTop: 'none',
paddingTop: 0,
},
':last-child': {
borderBottom: 'none',
paddingBottom: 0,
},
}}
> >
<Flex <Flex
direction="column" direction="column"
......
...@@ -190,7 +190,7 @@ const Marketplace = () => { ...@@ -190,7 +190,7 @@ const Marketplace = () => {
) } ) }
</Box> </Box>
<Flex direction={{ base: 'column', lg: 'row' }} mb={{ base: 1, lg: 6 }} gap={{ base: 4, lg: 3 }}> <Flex direction={{ base: 'column', lg: 'row' }} mb={{ base: 4, lg: 6 }} gap={{ base: 4, lg: 3 }}>
<RadioButtonGroup<MarketplaceDisplayType> <RadioButtonGroup<MarketplaceDisplayType>
onChange={ handleNFTsDisplayTypeChange } onChange={ handleNFTsDisplayTypeChange }
defaultValue={ displayType } defaultValue={ displayType }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment