diff --git a/static/app/views/monitors/components/overviewTimeline/timelineTableRow.tsx b/static/app/views/monitors/components/overviewTimeline/timelineTableRow.tsx index afd474b5e08c3e..3cd985a62f031f 100644 --- a/static/app/views/monitors/components/overviewTimeline/timelineTableRow.tsx +++ b/static/app/views/monitors/components/overviewTimeline/timelineTableRow.tsx @@ -156,6 +156,14 @@ const TimelineRow = styled('div')<{singleMonitorView?: boolean}>` } `} + &:last-child > *:first-child { + border-bottom-left-radius: ${p => p.theme.borderRadius}; + } + + &:last-child > *:last-child { + border-bottom-right-radius: ${p => p.theme.borderRadius}; + } + > * { transition: background 50ms ease-in-out; }