Browse Source

fix(workflow): Overflow long issue tags (#27104)

Scott Cooper 3 years ago
parent
commit
e6a8d3060b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      static/app/components/events/contextSummary/item.tsx

+ 2 - 0
static/app/components/events/contextSummary/item.tsx

@@ -34,8 +34,10 @@ const Wrapper = styled('div')`
   margin-right: ${space(3)};
   align-items: center;
   position: relative;
+  min-width: 0;
 
   @media (min-width: ${p => p.theme.breakpoints[0]}) {
+    max-width: 25%;
     border: 0;
     padding: 0px 0px 0px 42px;
   }