Browse Source

fix(trace): dark mode arrow (#67593)

Arrow was invisible in dark mode :)
Jonas 11 months ago
parent
commit
99091c2da6
1 changed files with 4 additions and 0 deletions
  1. 4 0
      static/app/views/performance/newTraceDetails/trace.tsx

+ 4 - 0
static/app/views/performance/newTraceDetails/trace.tsx

@@ -2191,6 +2191,10 @@ const TraceStylingWrapper = styled('div')`
     display: flex;
     align-items: center;
 
+    svg {
+      fill: ${p => p.theme.subText};
+    }
+
     &.Left {
       left: 0;
     }