Skip to content

Commit edcc317

Browse files
authored
fix(issue-details): Fix gap in issue title header (#96711)
if we show a tag next to the title, it currently shows up all the way on the right. this pr should fix that while also keeping the fix for overflowing titles
1 parent e6c8712 commit edcc317

File tree

1 file changed

+2
-2
lines changed
  • static/app/views/issueDetails/streamline/header

1 file changed

+2
-2
lines changed

static/app/views/issueDetails/streamline/header/header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ const Workflow = styled('div')`
402402

403403
const Title = styled('div')`
404404
display: grid;
405-
grid-template-columns: auto min-content;
405+
grid-template-columns: minmax(0, max-content) min-content;
406406
align-items: center;
407-
gap: ${space(0.5)};
407+
column-gap: ${p => p.theme.space.sm};
408408
`;

0 commit comments

Comments
 (0)