Skip to content

Commit 4271437

Browse files
authored
fix(connections): adjust status marker position CLOUDP-289203 (#6585)
adjust status marker position to bottom right corner
1 parent 9f7f9d9 commit 4271437

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/compass-connections-navigation/src/with-status-marker.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ const withStatusMarkerStyles = css({
106106
const withStatusMarkerMarkerStyles = css({
107107
position: 'absolute',
108108
display: 'flex',
109-
right: `-${spacing[50]}px`,
110-
bottom: `-${spacing[50]}px`,
109+
// Shows the marker in the bottom right corner of the parent element
110+
right: '0px',
111+
bottom: '0px',
111112
});
112113

113114
export function WithStatusMarker({

0 commit comments

Comments
 (0)