-
Notifications
You must be signed in to change notification settings - Fork 390
RI-7295: Fix Search screen buttons alignment #4851
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
base: main
Are you sure you want to change the base?
Conversation
@@ -9,5 +9,6 @@ export const StyledHeaderAction = styled(FlexGroup)` | |||
` | |||
|
|||
export const StyledWrapper = styled(FlexGroup)` | |||
align-items: center; |
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 need this, FlexGroup has property align, that does the same thing.
Also, it seems at least to me, that Row component is better suited for this use case.
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 entire thing is redundant, remove it!
e204d32
to
54922c1
Compare
Code Coverage - Frontend unit tests
Test suite run success5048 tests passing in 663 suites. Report generated by 🧪jest coverage report action from 2f67a59 |
/> | ||
</StyledWrapper> | ||
<> | ||
<FlexGroup align="center"> |
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.
<FlexGroup align="center"> | |
<Row align="center"> |
open={isManageIndexesDrawerOpen} | ||
onOpenChange={setIsManageIndexesDrawerOpen} | ||
/> | ||
</FlexGroup> |
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.
</FlexGroup> | |
</Row> |
Before
After