Skip to content

Commit

Permalink
styles(profiling): Override inherited padding on table cell (#76606)
Browse files Browse the repository at this point in the history
There's some unwanted padding that this inherits from the original
component.
  • Loading branch information
Zylphrex committed Aug 27, 2024
1 parent e9626c4 commit f6006f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static/app/views/profiling/landing/slowestFunctionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,8 @@ const SlowestFunctionsTimeSeriesContainer = styled(TableBodyCell)`
grid-column: 1 / -1;
grid-template-columns: subgrid;
border-top: 1px solid ${p => p.theme.border};
padding: 0;
padding: 0 !important;
`;

const SlowestFunctionsChartContainer = styled('div')`
Expand Down

0 comments on commit f6006f6

Please sign in to comment.