mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Refined desktop UI for change plan flow with multiple products
refs https://github.com/TryGhost/Team/issues/824 - updates desktop flow to match the mobile flow
This commit is contained in:
parent
d34d9c2489
commit
e636542aa7
1 changed files with 13 additions and 9 deletions
|
@ -722,10 +722,14 @@ function ChangeProductCards({products, onPlanSelect}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ChangeProductSection({products, onPlanSelect}) {
|
export function ChangeProductSection({products, onPlanSelect}) {
|
||||||
|
let className = 'gh-portal-products gh-portal-upgrade-product';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="gh-portal-products-grid">
|
<section className={className}>
|
||||||
|
<div className="gh-portal-products-grid change-plan">
|
||||||
<ChangeProductCards products={products} onPlanSelect={onPlanSelect} />
|
<ChangeProductCards products={products} onPlanSelect={onPlanSelect} />
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue