diff --git a/ui/src/pages/Tools/Diffchecker/Diffchecker.module.scss b/ui/src/pages/Tools/Diffchecker/Diffchecker.module.scss index 26534db8..35ed64fd 100644 --- a/ui/src/pages/Tools/Diffchecker/Diffchecker.module.scss +++ b/ui/src/pages/Tools/Diffchecker/Diffchecker.module.scss @@ -4,8 +4,4 @@ justify-content: center; padding: var(--bt-size-20) 0; } - - &_output { - overflow: auto; - } } diff --git a/ui/src/pages/Tools/Diffchecker/index.tsx b/ui/src/pages/Tools/Diffchecker/index.tsx index c20e5263..ca46cbe7 100644 --- a/ui/src/pages/Tools/Diffchecker/index.tsx +++ b/ui/src/pages/Tools/Diffchecker/index.tsx @@ -56,47 +56,45 @@ const Diffchecker: React.FC = () => { {lineDifferences.length > 0 && ( -
-
-								{lineDifferences
-									.filter((part) => !part.added)
-									.map((part, index) => (
-										
-											{part.value}
-										
-									))}
-							
-
+
+							{lineDifferences
+								.filter((part) => !part.added)
+								.map((part, index) => (
+									
+										{part.value}
+									
+								))}
+						
)} {lineDifferences.length > 0 && ( -
-
-								{lineDifferences
-									.filter((part) => !part.removed)
-									.map((part, index) => (
-										
-											{part.value}
-										
-									))}
-							
-
+
+							{lineDifferences
+								.filter((part) => !part.removed)
+								.map((part, index) => (
+									
+										{part.value}
+									
+								))}
+						
)}