Skip to content

Commit eac56a4

Browse files
JonasBapriscilawebdev
authored andcommitted
fix(trace) limit max button height (#73741)
Seems like the button had increased in size and can overlap with the indicator (by 2px).
1 parent 39d9da9 commit eac56a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

static/app/views/performance/newTraceDetails/traceDrawer/traceDrawer.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,8 @@ const TabIconButton = styled(Button)<{active: boolean}>`
807807
box-shadow: none;
808808
transition: none !important;
809809
opacity: ${p => (p.active ? 0.7 : 0.5)};
810+
height: 24px;
811+
max-height: 24px;
810812
811813
&:not(:last-child) {
812814
margin-right: ${space(1)};

0 commit comments

Comments
 (0)