Fix: Mobile-Layout friends + lost, GPS-Zeile wrappbar

This commit is contained in:
rene 2026-04-17 23:59:22 +02:00
parent 9563edbdf5
commit bf57b69e36
4 changed files with 9 additions and 7 deletions

View file

@ -36,7 +36,7 @@ window.Page_friends = (() => {
const myLink = `${location.origin}/#friends?suche=${encodeURIComponent(myName)}`;
_container.innerHTML = `
<div style="max-width:520px;margin:0 auto;padding:var(--space-4);overflow-x:hidden">
<div style="max-width:520px;margin:0 auto;overflow-x:hidden">
<!-- Mein Freundes-Link -->
<div class="card" style="margin-bottom:var(--space-5);padding:var(--space-4)">

View file

@ -496,13 +496,15 @@ window.Page_lost = (() => {
<div class="form-group">
<label class="form-label">Standort (letzter bekannter Ort)</label>
<div style="display:flex;gap:var(--space-2);align-items:center">
<div style="display:flex;gap:var(--space-2);align-items:center;flex-wrap:wrap">
<input class="form-control" type="text" id="lf-lat-disp"
placeholder="Breite" readonly style="flex:1">
placeholder="Breite" readonly style="flex:1;min-width:80px">
<input class="form-control" type="text" id="lf-lon-disp"
placeholder="Länge" readonly style="flex:1">
placeholder="Länge" readonly style="flex:1;min-width:80px">
<button type="button" class="btn btn-secondary" id="lf-gps-btn"
title="GPS-Standort ermitteln">📍</button>
style="white-space:nowrap">
${UI.icon('map-pin')} Standort
</button>
</div>
<input type="hidden" name="lat" id="lf-lat">
<input type="hidden" name="lon" id="lf-lon">