Skip to content

Commit

Permalink
add responsive false to some euiFlexGroups
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomThomson committed Oct 19, 2021
1 parent e442000 commit cb2cb9a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,13 @@ export const ControlGroup = () => {
})}
>
{idsInOrder.length > 0 ? (
<EuiFlexGroup gutterSize="m" wrap={false} direction="row" alignItems="center">
<EuiFlexGroup
wrap={false}
gutterSize="m"
direction="row"
responsive={false}
alignItems="center"
>
<EuiFlexItem>
<DndContext
onDragStart={({ active }) => setDraggingId(active.id)}
Expand Down Expand Up @@ -147,7 +153,7 @@ export const ControlGroup = () => {
</DndContext>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiFlexGroup className="groupEditActions" gutterSize="xs">
<EuiFlexGroup responsive={false} className="groupEditActions" gutterSize="xs">
<EuiFlexItem>
<EuiToolTip content={ControlGroupStrings.management.getManageButtonTitle()}>
<EuiButtonIcon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const ControlEditor = ({
</EuiForm>
</EuiFlyoutBody>
<EuiFlyoutFooter>
<EuiFlexGroup justifyContent="spaceBetween">
<EuiFlexGroup responsive={false} justifyContent="spaceBetween">
<EuiFlexItem grow={false}>
<EuiButtonEmpty
aria-label={`cancel-${title}`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const EditControlGroup = ({ closeFlyout }: { closeFlyout: () => void }) =
</EuiButtonEmpty>
</EuiFlyoutBody>
<EuiFlyoutFooter>
<EuiFlexGroup justifyContent="spaceBetween">
<EuiFlexGroup responsive={false} justifyContent="spaceBetween">
<EuiFlexItem grow={false}>
<EuiButtonEmpty
aria-label={`cancel-editing-group`}
Expand Down

0 comments on commit cb2cb9a

Please sign in to comment.