From f6006f6d5a4a6a97e0ec2be7be7b191220d8abea Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Tue, 27 Aug 2024 14:43:27 -0400 Subject: [PATCH] styles(profiling): Override inherited padding on table cell (#76606) There's some unwanted padding that this inherits from the original component. --- static/app/views/profiling/landing/slowestFunctionsTable.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app/views/profiling/landing/slowestFunctionsTable.tsx b/static/app/views/profiling/landing/slowestFunctionsTable.tsx index 69cdb1e49b602c..11886b2f303ebd 100644 --- a/static/app/views/profiling/landing/slowestFunctionsTable.tsx +++ b/static/app/views/profiling/landing/slowestFunctionsTable.tsx @@ -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')`