Merge branch 'marketplace-height-bug' into 'dev'

Fixes a height issue w/ marketplace items.

See merge request nitro/nitro-react!6
This commit is contained in:
Bill 2022-03-16 18:01:28 +00:00
commit 065bd5562d
2 changed files with 2 additions and 1 deletions

View File

@ -99,6 +99,7 @@
.layout-grid-item { .layout-grid-item {
height: 75px !important; height: 75px !important;
max-height: 75px !important; max-height: 75px !important;
min-height: 75px;
} }
} }

View File

@ -83,7 +83,7 @@ export const CatalogLayoutMarketplaceOwnItemsView: FC<CatalogLayoutProps> = prop
}); });
return ( return (
<Column> <Column overflow="hidden">
{ (creditsWaiting <= 0) && { (creditsWaiting <= 0) &&
<Text center className="bg-muted rounded p-1"> <Text center className="bg-muted rounded p-1">
{ LocalizeText('catalog.marketplace.redeem.no_sold_items') } { LocalizeText('catalog.marketplace.redeem.no_sold_items') }