-
-
Notifications
You must be signed in to change notification settings - Fork 273
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(suite): align promo buttons to the right #15591
Conversation
a888559
to
72a2df4
Compare
0a0c8f4
to
8bde401
Compare
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.
type="play-store" | ||
analyticsPayload="android" | ||
shownQRState={shownQRState} | ||
<Flex alignItems="center" justifyContent="space-between" width="100%"> |
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.
Please use Row
instead of Flex
52505e7
to
1a11428
Compare
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.
Two more comments, and ready to merge!
type="play-store" | ||
analyticsPayload="android" | ||
shownQRState={shownQRState} | ||
<Row alignItems="center" justifyContent="space-between" width="100%"> |
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.
you don't have to specify alignItems="center"
, because it's default value for Row
|
||
${variables.SCREEN_QUERY.MOBILE} { | ||
flex-direction: column; | ||
gap: 0; | ||
gap: ${spacingsPx.sm}; |
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.
what about define this in Row
?
8a19236
to
aef9e7c
Compare
</BadgeContainer> | ||
|
||
<Row> | ||
<BadgeContainer> |
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.
Does it work without using BadgeContainer
?
(Row and BadgeContainer are defacto duplicity here)
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 will try
2b81646
to
76d3529
Compare
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.
LGTM
76d3529
to
edc4e78
Compare
Resolves: #15575
Before
After