update frontend
This commit is contained in:
parent
0dad16e338
commit
9bf86deb06
|
|
@ -229,3 +229,41 @@ body[data-theme="light"] .sw-search-clear{
|
||||||
text-transform:uppercase;
|
text-transform:uppercase;
|
||||||
letter-spacing:0.04em;
|
letter-spacing:0.04em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* === Fix: search + 2 boutons sur une seule ligne === */
|
||||||
|
|
||||||
|
.map-overlay-top.sw-top-row{
|
||||||
|
display:flex;
|
||||||
|
flex-direction:row;
|
||||||
|
align-items:center;
|
||||||
|
justify-content:space-between;
|
||||||
|
gap:0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* la search ne prend plus 100% de largeur, elle laisse de la place aux icônes */
|
||||||
|
.map-overlay-top.sw-top-row .sw-searchbar{
|
||||||
|
flex:1 1 auto;
|
||||||
|
width:auto;
|
||||||
|
max-width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* bloc des 2 boutons à droite ne wrap pas trop vite */
|
||||||
|
.map-overlay-top.sw-top-row .map-top-actions{
|
||||||
|
flex-shrink:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* un petit min-width pour que les boutons restent lisibles */
|
||||||
|
.map-overlay-top.sw-top-row .map-action-btn{
|
||||||
|
min-width:64px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ajuste un peu pour les petits écrans */
|
||||||
|
@media (max-width: 480px){
|
||||||
|
.map-overlay-top.sw-top-row{
|
||||||
|
gap:0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.map-overlay-top.sw-top-row .sw-search-input{
|
||||||
|
font-size:0.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue