Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { EnvironmentFilter } from '../EnvironmentFilter';

const HeaderFlexGroup = euiStyled(EuiFlexGroup)`
padding: ${({ theme }) => theme.eui.gutterTypes.gutterMedium};
border-bottom: ${({ theme }) => theme.eui.euiBorderThin};
background: ${({ theme }) => theme.eui.euiColorEmptyShade};
`;

export function ApmHeader({ children }: { children: ReactNode }) {
Expand Down
2 changes: 2 additions & 0 deletions x-pack/plugins/apm/public/components/shared/main_tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import { euiStyled } from '../../../../../../src/plugins/kibana_react/common';
const StyledTabs = euiStyled(EuiTabs)`
padding: ${({ theme }) => `${theme.eui.gutterTypes.gutterMedium}`};
border-bottom: ${({ theme }) => theme.eui.euiBorderThin};
border-top: ${({ theme }) => theme.eui.euiBorderThin};
background: ${({ theme }) => theme.eui.euiColorEmptyShade};
`;

export function MainTabs({ children }: { children: ReactNode }) {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/apm/public/components/shared/search_bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function SearchBar({ prepend, showTimeComparison = false }: Props) {
const { isMedium, isLarge } = useBreakPoints();
const itemsStyle = { marginBottom: isLarge ? px(unit) : 0 };
return (
<SearchBarFlexGroup gutterSize="s" direction={getRowDirection(isLarge)}>
<SearchBarFlexGroup gutterSize="m" direction={getRowDirection(isLarge)}>
<EuiFlexItem>
<KueryBar prepend={prepend} />
</EuiFlexItem>
Expand Down