-
Notifications
You must be signed in to change notification settings - Fork 863
Closed
Labels
documentationIssues or PRs that only affect documentation - will not need changelog entriesIssues or PRs that only affect documentation - will not need changelog entries
Description
The following markup is creating broken layout when switching to small screen mode (responsive support):
<EuiFlexGroup direction="row">
<EuiFlexItem>
<EuiFlexGroup direction="column">
<EuiFlexItem>text</EuiFlexItem>
<EuiFlexItem>
<EuiButton>text</EuiButton>
</EuiFlexItem>
</EuiFlexGroup>
</EuiFlexItem>
</EuiFlexGroup>
Here's how it looks like:
The fix seems to be the following:
<EuiFlexGroup direction="row">
<EuiFlexItem>
<EuiFlexGroup direction="column">
<EuiFlexItem>text</EuiFlexItem>
<EuiFlexItem>
<EuiButton contentProps={{ style: { height: 'auto' } }}>text</EuiButton>
</EuiFlexItem>
</EuiFlexGroup>
</EuiFlexItem>
</EuiFlexGroup>
Here's how it looks (also expected look for the first code sample):
Metadata
Metadata
Assignees
Labels
documentationIssues or PRs that only affect documentation - will not need changelog entriesIssues or PRs that only affect documentation - will not need changelog entries

