Skip to content

Commit

Permalink
Remove responsive stacking from tabs with icons in them.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Mar 20, 2020
1 parent 5533a7e commit e03801b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface Props {

export const OutputPane: FunctionComponent<Props> = ({ isLoading, response }) => {
const outputTabLabel = (
<EuiFlexGroup gutterSize="s" alignItems="center">
<EuiFlexGroup gutterSize="s" alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
{isLoading ? (
<EuiLoadingSpinner size="m" />
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/painless_lab/public/plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class PainlessLabUIPlugin implements Plugin<void, void, PluginDependencie
id: 'painless_lab',
order: 7,
title: (
<EuiFlexGroup gutterSize="s" alignItems="center">
<EuiFlexGroup gutterSize="s" alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
{i18n.translate('xpack.painlessLab.displayName', {
defaultMessage: 'Painless Lab',
Expand Down

0 comments on commit e03801b

Please sign in to comment.