Skip to content

Commit

Permalink
fix(dashboards): Fix timeseries widget loading background colour (#83500
Browse files Browse the repository at this point in the history
)

Off-white strikes again
  • Loading branch information
gggritso authored Jan 15, 2025
1 parent 63b8a44 commit 1516b70
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function TimeSeriesWidget(props: TimeSeriesWidgetProps) {
return (
<WidgetFrame title={props.title} description={props.description}>
<LoadingPlaceholder>
<TransparentLoadingMask visible />
<LoadingMask visible />
<LoadingIndicator mini />
</LoadingPlaceholder>
</WidgetFrame>
Expand Down Expand Up @@ -85,3 +85,7 @@ const LoadingPlaceholder = styled('div')`
justify-content: center;
align-items: center;
`;

const LoadingMask = styled(TransparentLoadingMask)`
background: ${p => p.theme.background};
`;

0 comments on commit 1516b70

Please sign in to comment.