Skip to content

Commit

Permalink
[Unified Observability] Fix shadow for overview panels (#128878)
Browse files Browse the repository at this point in the history
* replace shadow with border for overview panels

* remove not needed prop
  • Loading branch information
estermv authored Apr 1, 2022
1 parent 5305597 commit f9d83f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function SectionContainer({
}: Props) {
const { http } = useKibana<ObservabilityAppServices>().services;
return (
<EuiPanel hasShadow={true} color="subdued">
<EuiPanel color="subdued">
<EuiAccordion
initialIsOpen
id={title}
Expand Down Expand Up @@ -79,7 +79,7 @@ export function SectionContainer({
>
<>
<EuiSpacer size="s" />
<EuiPanel hasShadow={true}>{hasError ? <ErrorPanel /> : <>{children}</>}</EuiPanel>
<EuiPanel hasBorder={true}>{hasError ? <ErrorPanel /> : <>{children}</>}</EuiPanel>
</>
</EuiAccordion>
</EuiPanel>
Expand Down

0 comments on commit f9d83f9

Please sign in to comment.