Skip to content

Commit

Permalink
ref(crons): Center placeholder timeline view (#53376)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Wang authored Jul 21, 2023
1 parent 9e710e9 commit a475a05
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function OverviewTimeline({monitorList}: Props) {
<TimelineRow key={monitor.id}>
<MonitorDetails monitor={monitor} />
{isLoading || !monitorStats ? (
<Placeholder />
<TimelinePlaceholder />
) : (
<div>
<CheckInTimeline
Expand Down Expand Up @@ -181,3 +181,7 @@ const TimelineWidthTracker = styled('div')`
grid-row: 1;
grid-column: 2;
`;

const TimelinePlaceholder = styled(Placeholder)`
align-self: center;
`;

0 comments on commit a475a05

Please sign in to comment.