diff --git a/x-pack/plugins/endpoint/public/embeddables/resolver/view/edge_line.tsx b/x-pack/plugins/endpoint/public/embeddables/resolver/view/edge_line.tsx index fbd40dda9adfd5a..3386ed4a448d53b 100644 --- a/x-pack/plugins/endpoint/public/embeddables/resolver/view/edge_line.tsx +++ b/x-pack/plugins/endpoint/public/embeddables/resolver/view/edge_line.tsx @@ -66,7 +66,7 @@ export const EdgeLine = styled( */ transform: `translateY(-50%) rotateZ(${angle(screenStart, screenEnd)}rad)`, }; - return
; + return
; } ) )` @@ -74,5 +74,4 @@ export const EdgeLine = styled( height: 3px; background-color: #d4d4d4; color: #333333; - contain: strict; `; diff --git a/x-pack/plugins/endpoint/public/embeddables/resolver/view/index.tsx b/x-pack/plugins/endpoint/public/embeddables/resolver/view/index.tsx index 22e9d05ad98ffbf..3e4e1f5717cdea5 100644 --- a/x-pack/plugins/endpoint/public/embeddables/resolver/view/index.tsx +++ b/x-pack/plugins/endpoint/public/embeddables/resolver/view/index.tsx @@ -34,12 +34,6 @@ const StyledGraphControls = styled(GraphControls)` right: 5px; `; -const StyledResolverContainer = styled.div` - display: flex; - flex-grow: 1; - contain: layout; -`; - const bgColor = NamedColors.resolverBackground; export const Resolver = styled( @@ -73,7 +67,7 @@ export const Resolver = styled(
) : ( - ))} - +
)} @@ -128,6 +122,5 @@ export const Resolver = styled( * Prevent partially visible components from showing up outside the bounds of Resolver. */ overflow: hidden; - contain: strict; background-color: ${bgColor}; `;