Fix: Mobile-Audit — Notifications Delete-Button, Health-Grid, Settings-Padding

This commit is contained in:
rene 2026-04-18 00:03:39 +02:00
parent bf57b69e36
commit bf268e3ffd
5 changed files with 13 additions and 5 deletions

View file

@ -1146,7 +1146,7 @@ window.Page_health = (() => {
function _extraFormFields(entry, typ) {
switch (typ) {
case 'impfung': return `
<div style="display:grid;grid-template-columns:1fr 1fr;gap:var(--space-3)">
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:var(--space-3)">
<div class="form-group">
<label class="form-label">Nächste Impfung</label>
<input class="form-control" type="date" name="naechstes" value="${entry?.naechstes || ''}">
@ -1160,7 +1160,7 @@ window.Page_health = (() => {
</div>
`;
case 'entwurmung': return `
<div style="display:grid;grid-template-columns:1fr 1fr;gap:var(--space-3)">
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:var(--space-3)">
<div class="form-group">
<label class="form-label">Nächste Behandlung</label>
<input class="form-control" type="date" name="naechstes" value="${entry?.naechstes || ''}">