-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add onboarding billing step (#17514)
* update billing hero * restructure plan comparison so it can be used w/o modal * no onboarding for inclusion-only products * add basic billing step * improve variable naming * fix * make billing step work after subscribe & addons * automatically include billing step in onboarding * show billing step properly * tolerate sub'd product on intro * store when someone has sub'd during onboarding * just put addons on the main screen
- Loading branch information
1 parent
eb9eb9e
commit 99800cd
Showing
14 changed files
with
618 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.PlanComparisonModal { | ||
max-width: 900px; | ||
} | ||
table.PlanComparison { | ||
table-layout: fixed; | ||
td { | ||
vertical-align: top; | ||
padding: 0.75rem 1.25rem; | ||
|
||
&.PlanTable__td__upgradeButton { | ||
padding-top: 1rem; | ||
padding-bottom: 1rem; | ||
} | ||
} | ||
th { | ||
vertical-align: top; | ||
padding: 0.75rem 1.25rem 0.75rem; | ||
font-weight: 600; | ||
text-align: left; | ||
|
||
&.PlanTable__th__section { | ||
padding: 0.25rem 1.25rem 0.25rem; | ||
font-weight: 500; | ||
} | ||
|
||
&.PlanTable__th__feature { | ||
padding: 0.75rem 1.25rem 0.75rem 3.25rem; | ||
font-weight: 600; | ||
} | ||
|
||
&.PlanTable__th__last-feature { | ||
padding-bottom: 2rem; | ||
} | ||
|
||
p { | ||
font-weight: 400; | ||
} | ||
} | ||
} | ||
.PlanTable__tr__border { | ||
border-bottom: 3px rgba(0, 0, 0, 0.07) dotted; | ||
} |
Oops, something went wrong.