From 2ae0375d564ead7932a0dcbc6dfa4db85eb6c58c Mon Sep 17 00:00:00 2001 From: Philippe Perrin Date: Wed, 8 Jan 2020 17:50:57 +0100 Subject: [PATCH] SONAR-12717 Reduce the with of the hotspot list --- server/sonar-web/src/main/js/apps/securityHotspots/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/sonar-web/src/main/js/apps/securityHotspots/styles.css b/server/sonar-web/src/main/js/apps/securityHotspots/styles.css index 5ccfef0260e..9a327c158d7 100644 --- a/server/sonar-web/src/main/js/apps/securityHotspots/styles.css +++ b/server/sonar-web/src/main/js/apps/securityHotspots/styles.css @@ -40,14 +40,14 @@ } #security_hotspots .sidebar { - flex: 1 0 30%; + flex: 0 0 300px; border-right: 1px solid var(--barBorderColor); height: 100%; overflow-y: auto; } #security_hotspots .main { - flex: 1 0 70%; + flex: 1 1 auto; overflow-y: auto; background-color: white; } -- 2.39.5