Skip to content

Commit 32f65aa

Browse files
authored
Bug fix on the on the pill icon margin (#14337)
Bug fix for the margin issue on the pill icon.
1 parent da701f3 commit 32f65aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/sentry/static/sentry/app/components/pill.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ const PillName = styled('span')`
6464
`;
6565

6666
const PillValue = styled(PillName)`
67-
6867
/* .true - good values */
6968
${p =>
7069
p.type === 'true' &&
@@ -89,6 +88,7 @@ const PillValue = styled(PillName)`
8988
p.theme.button.borderRadius} 0;
9089
font-family: ${p => p.theme.text.familyMono};
9190
max-width: 100%;
91+
9292
> a {
9393
max-width: 100%;
9494
text-overflow: ellipsis;
@@ -97,6 +97,8 @@ const PillValue = styled(PillName)`
9797
display: inline-block;
9898
vertical-align: text-bottom;
9999
}
100+
101+
.pill-icon,
100102
.external-icon {
101103
display: inline;
102104
margin: 0 0 0 ${space(1)};

src/sentry/static/sentry/app/components/pills.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import styled from 'react-emotion';
33
const Pills = styled('div')`
44
display: flex;
55
flex-wrap: wrap;
6-
font-size: ${p => p.theme.fontSizeSmall};
6+
font-size: 13px;
77
`;
88

99
export default Pills;

0 commit comments

Comments
 (0)