mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Workplace Search] better spacing around icon in Group filter popover (#111949)
* better spacing around icon in group filter popover * prevent flex wrapping on small screens
This commit is contained in:
parent
3fd7dbe455
commit
dd1714e8dd
1 changed files with 2 additions and 2 deletions
|
@ -20,9 +20,9 @@ interface SourceOptionItemProps {
|
|||
}
|
||||
|
||||
export const SourceOptionItem: React.FC<SourceOptionItemProps> = ({ source }) => (
|
||||
<EuiFlexGroup gutterSize="xs" justifyContent="flexStart" alignItems="center">
|
||||
<EuiFlexGroup gutterSize="m" justifyContent="flexStart" alignItems="center" responsive={false}>
|
||||
<EuiFlexItem grow={false}>
|
||||
<SourceIcon {...source} size="l" />
|
||||
<SourceIcon {...source} size="s" />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<TruncatedContent tooltipType="title" content={source.name} length={MAX_LENGTH} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue