update frontend

This commit is contained in:
Your Name 2025-12-20 23:25:37 -05:00
parent acee536d8b
commit 0e8089e1eb
1 changed files with 13 additions and 7 deletions

View File

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