Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipb committed Nov 10, 2020
1 parent 4134c8c commit 787dbe3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const NodeContextPopover = ({

return (
<EuiPanel hasShadow={true} paddingSize={'none'} style={panelStyle}>
<OverflayHeader>
<OverlayHeader>
<EuiFlexGroup alignItems={'center'}>
<EuiFlexItem grow={true}>
<EuiText>
Expand All @@ -67,13 +67,13 @@ export const NodeContextPopover = ({
</EuiButtonEmpty>
</EuiFlexItem>
</EuiFlexGroup>
</OverflayHeader>
</OverlayHeader>
<EuiTabbedContent tabs={tabs} />
</EuiPanel>
);
};

const OverflayHeader = euiStyled.div`
const OverlayHeader = euiStyled.div`
border-color: ${(props) => props.theme.eui.euiBorderColor};
border-bottom-width: ${(props) => props.theme.eui.euiBorderWidthThick};
padding: ${(props) => props.theme.eui.euiSizeS};
Expand Down

0 comments on commit 787dbe3

Please sign in to comment.