diff --git a/src/components/modals/main/marketplace/sections/Marketplace.jsx b/src/components/modals/main/marketplace/sections/Marketplace.jsx index 9bfb5f42..cc9e0f07 100644 --- a/src/components/modals/main/marketplace/sections/Marketplace.jsx +++ b/src/components/modals/main/marketplace/sections/Marketplace.jsx @@ -159,20 +159,6 @@ export default class Marketplace extends PureComponent { ); }; - const featured = () => { - const openFeatured = () => { - window.stats.postEvent('marketplace', 'Featured clicked'); - window.open(this.state.featured.buttonLink); - } - return ( -
{this.state.featured.title}
-{this.state.featured.title}
+{this.language.no_items}
>)} > - ) + ); } if (this.state.item.display_name) { diff --git a/src/components/modals/main/scss/marketplace/_main.scss b/src/components/modals/main/scss/marketplace/_main.scss index 4ba9dc7d..a431d6a0 100644 --- a/src/components/modals/main/scss/marketplace/_main.scss +++ b/src/components/modals/main/scss/marketplace/_main.scss @@ -16,7 +16,7 @@ .items { display: inline-grid; - grid-template-columns: repeat(6, 1fr); + grid-template-columns: repeat(3, 1fr); margin-top: 15px; .item { @@ -71,21 +71,15 @@ } } -@media only screen and (max-width: 2100px) { - .items { - grid-template-columns: repeat(3, 1fr); - } -} - -@media only screen and (max-width: 1870px) { +@media (max-width: 1680px) and (min-width: 1500px) { .items { grid-template-columns: repeat(2, 1fr); } } -@media only screen and (min-width: 1079px), (max-width: 1869px) { +@media (max-width: 1440px) { .items { - grid-template-columns: repeat(3, 1fr); + grid-template-columns: repeat(1, 1fr); } }