diff --git a/src/styles/map.css b/src/styles/map.css index 6f9086c..af1c87d 100644 --- a/src/styles/map.css +++ b/src/styles/map.css @@ -318,16 +318,16 @@ body[data-theme="light"] .sw-search-clear{ width:100%; } -/* search = 50% à gauche */ +/* search ~45% à gauche */ .sw-top-search{ - flex:0 0 50%; - max-width:50%; + flex:0 0 45%; + max-width:45%; } -/* bloc des 2 boutons = 50% à droite */ +/* bloc des 2 boutons ~55% à droite */ .map-top-actions{ - flex:0 0 50%; - max-width:50%; + flex:0 0 55%; + max-width:55%; display:flex; flex-direction:row; align-items:center; @@ -369,7 +369,7 @@ body[data-theme="light"] .sw-search-clear{ letter-spacing:0.04em; } -/* petits écrans : on laisse 50/50 mais on compresse un peu les boutons */ +/* petits écrans : on laisse 45/55 mais on compresse un peu les boutons */ @media (max-width:480px){ .sw-top-row{ gap:0.5rem; @@ -378,3 +378,9 @@ body[data-theme="light"] .sw-search-clear{ padding:0.3rem 0.45rem; } } + +/* === CACHER LES BOUTONS DE ZOOM MAPLIBRE (+/-) === */ +.maplibregl-ctrl-zoom-in, +.maplibregl-ctrl-zoom-out{ + display:none !important; +}