Browse Source

fix(ui): Avoid level indicators peeking around sticky header (#26035)

Evan Purkhiser 3 years ago
parent
commit
5552452cbc
1 changed files with 3 additions and 2 deletions
  1. 3 2
      static/app/views/issueList/actions/index.tsx

+ 3 - 2
static/app/views/issueList/actions/index.tsx

@@ -358,9 +358,10 @@ const StyledFlex = styled('div')`
   padding-bottom: ${space(1)};
   align-items: center;
   background: ${p => p.theme.backgroundSecondary};
-  border-bottom: 1px solid ${p => p.theme.border};
+  border: 1px solid ${p => p.theme.border};
+  border-top: none;
   border-radius: ${p => p.theme.borderRadius} ${p => p.theme.borderRadius} 0 0;
-  margin-bottom: -1px;
+  margin: 0 -1px -1px;
 `;
 
 const ActionsCheckbox = styled('div')`