Skip to content

Commit

Permalink
style(flags): simplify grid template columns (#80772)
Browse files Browse the repository at this point in the history
make the numbers less weird
  • Loading branch information
michellewzhang authored Nov 14, 2024
1 parent c06aeab commit 5b673ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/components/keyValueData/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const ContentWrapper = styled('div')<{
expandLeft?: boolean;
}>`
display: grid;
grid-template-columns: ${p => (p.expandLeft ? '0.95fr 0.41fr' : 'subgrid')};
grid-template-columns: ${p => (p.expandLeft ? '2fr 0.8fr' : 'subgrid')};
grid-column: span 2;
column-gap: ${space(1.5)};
padding: ${space(0.25)} ${space(0.75)};
Expand Down

0 comments on commit 5b673ac

Please sign in to comment.