From 475d6958dcc685538fda552a6b149b1d367b75b5 Mon Sep 17 00:00:00 2001 From: syoul Date: Wed, 3 Dec 2025 17:44:06 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20remonter=20encore=20la=20l=C3=A9gende=20?= =?UTF-8?q?plus=20haut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Légende remontée de bottom: 220px à bottom: 320px - Plus d'espace entre la légende et le quadrant 4 - La légende est maintenant bien plus haute à droite --- custom.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/custom.css b/custom.css index ba64c39..a9d17f6 100644 --- a/custom.css +++ b/custom.css @@ -120,26 +120,26 @@ header nav a:hover { margin-bottom: 6px !important; } -/* Sur les grands écrans, positionner la légende PLUS HAUT (à la place de l'ancien quadrant 4) */ +/* Sur les grands écrans, positionner la légende ENCORE PLUS HAUT */ @media (min-width: 1200px) { [class*="Radar_radar"] [class*="Legend_legend"], [class*="Legend_legend"] { right: 10px !important; - bottom: 220px !important; + bottom: 320px !important; left: auto !important; top: auto !important; transform: none !important; } } -/* Sur les écrans moyens, centrer la légende PLUS HAUT */ +/* Sur les écrans moyens, centrer la légende ENCORE PLUS HAUT */ @media (min-width: 768px) and (max-width: 1199px) { [class*="Radar_radar"] [class*="Legend_legend"], [class*="Legend_legend"] { left: 50% !important; right: auto !important; transform: translateX(-50%) !important; - bottom: 220px !important; + bottom: 320px !important; top: auto !important; } }