From f4dfa7536a815153fb8a04081e96180e33ba2638 Mon Sep 17 00:00:00 2001 From: 7PH Date: Wed, 20 Sep 2023 16:04:01 +0200 Subject: [PATCH] SONAR-20480 Fix security hotspot code snippet header border thickness --- .../components/HotspotSnippetContainerRenderer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx index b7dc0f695c2..b71e366aec8 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx +++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx @@ -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')}; `); -- 2.39.5