Skip to content

Commit

Permalink
Fix Assist z-index so it doesn't hide the user dropdown when docked (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanclark committed Feb 14, 2024
1 parent e232f25 commit 8159063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/packages/teleport/src/Assist/Assist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const Container = styled.div<{ docked: boolean }>`
opacity: 0;
animation: forwards ${fadeIn} 0.3s ease-in-out;
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
z-index: ${p => (p.docked ? 2 : 100)};
display: flex;
justify-content: flex-end;
`;
Expand Down

0 comments on commit 8159063

Please sign in to comment.