Skip to content
Open
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
2 changes: 1 addition & 1 deletion assets/min-css/marketplace.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions css/marketplace.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,6 @@ body.one-com_page_onecom-marketplace{
#marketplace-root .gv-activated .marketplace-container .gv-carousel-slide .gv-product-header.gv-area-header {
align-items: flex-start;
}
.gv-activated .ocmp-plugin-cards .gv-desk-span-8{
width:226px;
}
}

@media (min-width: 769px ) and (max-width: 1024px) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'react-dom'), 'version' => 'c61183d4dbc36f524021');
<?php return array('dependencies' => array('react', 'react-dom'), 'version' => '3532f1a5b2c2e7d21487');
2 changes: 1 addition & 1 deletion frontend/build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/build/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions frontend/src/components/MarketPlace.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,12 +475,12 @@ export default function Marketplace() {
const fullPriceAmount = getFullPrice(plugin);
const rebatePriceAmount = getRebatePrice(plugin);
return (
<div key={plugin.slug} className="gv-card gv-gap-md gv-content-container gv-p-lg gv-grid gv-grid-cols-12 gv-radius ocmp-plugin-cards">
<div className="gv-desk-span-2 gv-span-3 gv-tab-span-3">
<div key={plugin.slug} className="gv-card gv-gap-sm gv-content-container gv-p-lg gv-grid gv-grid-cols-12 gv-radius ocmp-plugin-cards">
<div className="gv-desk-span-2 gv-span-2 gv-tab-span-2">
<img className="gv-icon-tile" src={plugin.iconUrl || `${iconBase}add_box.svg`}
alt={plugin.name} />
</div>
<div className="gv-desk-span-8 gv-tab-span-7 gv-span-7">
<div className="gv-desk-span-9 gv-tab-span-9 gv-span-9 gv-ml-sm">
<div className="gv-flex gv-flex-col gv-justify-between gv-h-full">
<p className="gv-text-sm gv-text-bold gv-mb-xs">{plugin.name}</p>
<p className="oc-card-content gv-text-on-alternative gv-mb-sm gv-text-sm gv-flex-1"> {plugin.i18n.listingDescription || plugin.i18n.subtitle} </p>
Expand All @@ -492,7 +492,7 @@ export default function Marketplace() {
</span>
</div>
</div>
<div className="gv-span-2 gv-content-center gv-text-right">
<div className="gv-span-1 gv-content-center gv-text-right">
<a
href={`${getBaseUrl()}&plugin=${plugin.slug}`}
className="gv-reset-button"
Expand Down
Loading