diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2025-06-10 01:07:17 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2025-06-10 01:07:17 +0200 |
commit | 1b0a2cf33d964116b2a7d4dec8eeb54e7ed7ac34 (patch) | |
tree | f04cffe81a6f815df7b74cc777a92b7a555660dc | |
parent | 853726f895b649f267d57df8bb255d4532127de2 (diff) |
CSS: Add 50px to the legend's max-width.
-rw-r--r-- | style.css | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -200,10 +200,6 @@ body.inprogress { #layer-selection-panel, #map-legend-panel { position: relative; - /*min-width: min-content;*/ - /*max-width: 35%;*/ - /*width: revert;*/ - max-width: 360px; margin-left: 0; margin-right: var(--map-menu-spacing); font-size: medium; @@ -214,6 +210,15 @@ body.inprogress { --bs-modal-color: var(--bs-body-color); --bs-modal-padding: .75rem; } +#layer-selection-panel { + /*min-width: min-content;*/ + /*max-width: 35%;*/ + /*width: revert;*/ + max-width: 360px; +} +#map-legend-panel { + max-width: 410px; +} @keyframes fade-in { from { opacity: 0; |