diff options
author | Revanshu Paliwal <revanshu.paliwal@sonarsource.com> | 2022-08-10 17:09:46 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-08-10 20:03:08 +0000 |
commit | 2ae7aacc4fca167a3edef4e3dcb1ee657c8ca81b (patch) | |
tree | 6b11e68de49c358eb88116fd4be95f977f557ef3 | |
parent | 8e7e7eb3abb0aedc888fac9407da2878d1d6641c (diff) | |
download | sonarqube-2ae7aacc4fca167a3edef4e3dcb1ee657c8ca81b.tar.gz sonarqube-2ae7aacc4fca167a3edef4e3dcb1ee657c8ca81b.zip |
SONAR-16538 Security hotspot box fix to remove negative margin
-rw-r--r-- | server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotPrimaryLocationBox.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotPrimaryLocationBox.css b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotPrimaryLocationBox.css index 435e1830be4..f76627197fc 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotPrimaryLocationBox.css +++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotPrimaryLocationBox.css @@ -22,7 +22,7 @@ border: 1px solid var(--blue); background-color: var(--issueBgColor); border-left: 4px solid; - margin: 10px -10px; + margin: 10px 0px; } .hotspot-primary-location.hotspot-risk-exposure-HIGH { |