From 599db5504d970a8abce434ef4af4d4dce44644eb Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Thu, 16 Nov 2023 13:31:15 -0800 Subject: [PATCH] fix(crons): Subtle UI border-radius overflow fix Before ![clipboard.png](https://i.imgur.com/axRZTWs.png) After ![clipboard.png](https://i.imgur.com/ntSwTwM.png) --- .../components/overviewTimeline/timelineTableRow.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) 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; }