0
Fork 0
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:
Rishabh 2021-06-29 17:24:11 +05:30
parent d34d9c2489
commit e636542aa7

View file

@ -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>
); );
} }