-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
fix(checkout v3): UI tweaks #99554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(checkout v3): UI tweaks #99554
Conversation
commit daae74a Author: isabellaenriquez <[email protected]> Date: Fri Sep 12 09:20:37 2025 -0400 add breakpoint commit 5838176 Author: isabellaenriquez <[email protected]> Date: Thu Sep 11 17:52:17 2025 -0400 move price warning commit 29187c0 Author: isabellaenriquez <[email protected]> Date: Thu Sep 11 17:28:13 2025 -0400 feat(checkout v3): New plan feature list
✅ All tests passed |
<Grid | ||
<Flex | ||
direction="column" | ||
align="start" | ||
gap="2xl" | ||
columns={{ | ||
sm: 'auto', | ||
md: isNewCheckout ? '3fr 2fr' : 'auto', | ||
lg: '3fr 2fr', | ||
}} | ||
maxWidth={isNewCheckout ? '1440px' : undefined} | ||
padding={isNewCheckout ? '2xl' : undefined} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this regresses existing checkout
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i also noticed if you collapse all the sections the layout gets weird
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah crap thought i fixed that, good catch
`Annual subscriptions require a one-year non-cancellable commitment. | ||
By using Sentry you agree to our [terms: Terms of Service].`, | ||
{terms: <a href="https://sentry.io/terms/" />} | ||
<LogoSentry height="24px" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this shouldn't show up in existing checkout
<Grid columns="1fr 1fr" gap="xl"> | ||
<ProductSelect | ||
activePlan={activePlan} | ||
formData={formData} | ||
onUpdate={onUpdate} | ||
isNewCheckout | ||
/> | ||
</Grid> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we'll need to move this grid into ProductSelect
itself but we can cross this bridge when we have other products later :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also should we add breakpoints?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah i figured this was a bandaid for now, i'll add the breakpoint too!
- add translation to cart label - change structure to show new layout on isNewCheckout - responsive grid
Making some broad stroke changes to the new checkout UI