From b98e0f0d8551e9ef25ae4d6d6247b080434c88ae Mon Sep 17 00:00:00 2001 From: Tan Nhu Date: Wed, 8 May 2024 21:26:35 +0000 Subject: [PATCH] Fix conflict CSS from UICore V3 that adds extra paddings to diff rows (#2027) --- web/src/components/DiffViewer/DiffViewer.module.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/components/DiffViewer/DiffViewer.module.scss b/web/src/components/DiffViewer/DiffViewer.module.scss index ed548e833..0a96ca9c9 100644 --- a/web/src/components/DiffViewer/DiffViewer.module.scss +++ b/web/src/components/DiffViewer/DiffViewer.module.scss @@ -34,6 +34,12 @@ min-height: 36px; :global { + th, + td { + padding-top: 0; + padding-bottom: 0; + } + .d2h-wrapper > div { margin-bottom: 0; }