fix: remonter encore la légende plus haut

- 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
This commit is contained in:
syoul
2025-12-03 17:44:06 +01:00
parent 9b546f6d77
commit 475d6958dc

View File

@@ -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;
}
}