Skip to content

Commit aae707b

Browse files
committed
feat(ui): Align keyValueTable keys to the center
Not 100% sure we want this, but it fixes things like this Before: <img alt="clipboard.png" width="335" src="https://i.imgur.com/YMlu7Mg.png" /> After: <img alt="clipboard.png" width="334" src="https://i.imgur.com/W6bD4IJ.png" />
1 parent f29fcd4 commit aae707b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

static/app/components/keyValueTable.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ const commonStyles = ({theme, type}: {type: Props['type']} & {theme: Theme}) =>
4646

4747
const Key = styled('dt')<{type: Props['type']}>`
4848
${commonStyles};
49+
display: flex;
50+
align-items: center;
4951
color: ${p => p.theme.textColor};
5052
`;
5153

0 commit comments

Comments
 (0)