Skip to content

Commit

Permalink
Style Resolver enough that you can see it
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Jun 26, 2020
1 parent d3e4a91 commit b9756e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ const OverlayContainer = styled.div<{ bodyHeight?: number }>`
width: 100%;
`;

const StyledResolver = styled(Resolver)`
height: 100%;
`;

interface OwnProps {
bodyHeight?: number;
graphEventId?: string;
Expand Down Expand Up @@ -118,7 +122,7 @@ const GraphOverlayComponent = ({
</EuiFlexGroup>

<EuiHorizontalRule margin="none" />
<Resolver databaseDocumentID={graphEventId} />
<StyledResolver databaseDocumentID={graphEventId} />
<AllCasesModal
onCloseCaseModal={onCloseCaseModal}
showCaseModal={showCaseModal}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const TimelineBody = styled.div.attrs(({ className = '' }) => ({
overflow: auto;
scrollbar-width: thin;
flex: 1;
visibility: ${({ visible }) => (visible ? 'visible' : 'hidden')};
display: ${({ visible }) => (visible ? 'block' : 'none')};
&::-webkit-scrollbar {
height: ${({ theme }) => theme.eui.euiScrollBar};
Expand Down

0 comments on commit b9756e8

Please sign in to comment.