Skip to content

Commit

Permalink
fix(crons): Subtle UI border-radius overflow fix (#60136)
Browse files Browse the repository at this point in the history
Before

![clipboard.png](https://i.imgur.com/axRZTWs.png)

After

![clipboard.png](https://i.imgur.com/ntSwTwM.png)
  • Loading branch information
evanpurkhiser authored Nov 16, 2023
1 parent b025f2a commit c50a11a
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c50a11a

Please sign in to comment.