diff --git a/ghost/portal/src/components/common/PlansSection.js b/ghost/portal/src/components/common/PlansSection.js index 602756cfae..dff7491b3f 100644 --- a/ghost/portal/src/components/common/PlansSection.js +++ b/ghost/portal/src/components/common/PlansSection.js @@ -69,6 +69,15 @@ export const PlanSectionStyles = ` border-bottom-right-radius: 0; } + .gh-portal-plans-container.has-multiple-products.has-discount { + margin-top: 40px; + } + + .gh-portal-plans-container.has-multiple-products.has-discount, + .gh-portal-plans-container.has-multiple-products.has-discount .gh-portal-plan-section:last-of-type::before { + border-top-right-radius: 0; + } + .gh-portal-plans-container.is-change-plan.has-multiple-products .gh-portal-plan-section::before { border-top-left-radius: 0; border-top-right-radius: 0; @@ -498,16 +507,16 @@ function PlanOptions({plans, selectedPlan, onPlanSelect, changePlan}) { break; } - const planClass = (isChecked ? 'gh-portal-plan-section checked' : 'gh-portal-plan-section'); + let planClass = isChecked ? 'gh-portal-plan-section checked' : 'gh-portal-plan-section'; const planNameClass = planDetails.feature ? 'gh-portal-plan-name' : 'gh-portal-plan-name no-description'; const featureClass = hasMultipleProductsFeature({site}) ? 'gh-portal-plan-featurewrapper hidden' : 'gh-portal-plan-featurewrapper'; return (