Skip to content

Commit

Permalink
fix(connections): adjust status marker position CLOUDP-289203 (#6585)
Browse files Browse the repository at this point in the history
adjust status marker position to bottom right corner
  • Loading branch information
mabaasit authored Jan 2, 2025
1 parent 9f7f9d9 commit 4271437
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ const withStatusMarkerStyles = css({
const withStatusMarkerMarkerStyles = css({
position: 'absolute',
display: 'flex',
right: `-${spacing[50]}px`,
bottom: `-${spacing[50]}px`,
// Shows the marker in the bottom right corner of the parent element
right: '0px',
bottom: '0px',
});

export function WithStatusMarker({
Expand Down

0 comments on commit 4271437

Please sign in to comment.