]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-20480 Fix security hotspot code snippet header border thickness
author7PH <benjamin.raymond@sonarsource.com>
Wed, 20 Sep 2023 14:04:01 +0000 (16:04 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 20 Sep 2023 20:02:50 +0000 (20:02 +0000)
server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx

index b7dc0f695c2bdb7f4dd558449a327d29288ff55d..b71e366aec86c7ca72f697a341d9747475bb1c51 100644 (file)
@@ -20,7 +20,7 @@
 
 import { withTheme } from '@emotion/react';
 import styled from '@emotion/styled';
-import { themeBorder, themeColor } from 'design-system';
+import { themeColor } from 'design-system';
 import * as React from 'react';
 import Spinner from '../../../components/ui/Spinner';
 import { translate } from '../../../helpers/l10n';
@@ -177,5 +177,4 @@ export default function HotspotSnippetContainerRenderer(
 
 const SourceFileWrapper = withTheme(styled.div`
   background-color: ${themeColor('codeLine')};
-  border: ${themeBorder('default', 'codeLineBorder')};
 `);