Web: Foto-Knöpfe auf gleiche Höhe

"Foto machen"/"Galerie" sind <label> und erbten das margin-bottom des globalen
label-Stils, wodurch sie hoeher sassen als der "Entfernen"-<button>. margin:0
an den Foto-Knoepfen stellt alle drei auf eine Hoehe.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Scarriffle
2026-07-26 21:26:13 +02:00
parent 41e8cce612
commit 3befaad850

View File

@@ -921,4 +921,6 @@ tr.row-active { background: var(--surface-2); }
/* Artikelfoto mit Aufnahme-/Galerie-Knöpfen */
.produkt-foto { display: flex; flex-direction: column; gap: var(--sp-2); align-items: center; }
.foto-knoepfe { display: flex; flex-wrap: wrap; gap: var(--sp-1); justify-content: center; align-items: center; }
.foto-knoepfe .btn { cursor: pointer; }
/* "Foto machen"/"Galerie" sind <label> und erben sonst das margin-bottom des
globalen label-Stils dann saessen sie hoeher als der <button> "Entfernen". */
.foto-knoepfe .btn { cursor: pointer; margin: 0; }