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
<ListItemMobile
rowGap={ 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
direction="column"
......
......@@ -190,7 +190,7 @@ const Marketplace = () => {
) }
</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>
onChange={ handleNFTsDisplayTypeChange }
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