Skip to content

Commit

Permalink
[Security Solution] expandable flyout - increase line-height for sess…
Browse files Browse the repository at this point in the history
…ion preview (#166932)
  • Loading branch information
PhilippeOberti authored Sep 22, 2023
1 parent b4d8f6e commit 416dabf
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import { EuiCode, EuiIcon, useEuiTheme } from '@elastic/eui';
import type { ReactElement } from 'react';
import React, { useMemo, type FC } from 'react';
import { css } from '@emotion/react';
import { FormattedMessage } from '@kbn/i18n-react';
import { SESSION_PREVIEW_TEST_ID } from './test_ids';
import { useRightPanelContext } from '../context';
Expand Down Expand Up @@ -127,7 +128,12 @@ export const SessionPreview: FC = () => {
}, [command, workdir]);

return (
<div data-test-subj={SESSION_PREVIEW_TEST_ID}>
<div
css={css`
line-height: 1.5;
`}
data-test-subj={SESSION_PREVIEW_TEST_ID}
>
<ValueContainer>
<EuiIcon type="user" />
&nbsp;
Expand Down

0 comments on commit 416dabf

Please sign in to comment.