fix(recipes): élargir le sélecteur d'unité pour les labels longs

.ingredient-row__unit était encore dimensionné pour l'ancien champ
texte libre (6rem, suffisant pour "g"/"unité") — trop étroit
maintenant que c'est un <select> sur le catalogue, dont le plus long
label ("cuillère à soupe") était tronqué.
This commit is contained in:
Nicolas 2026-08-19 22:40:02 +02:00
parent de500e1a8a
commit 0ff8775cf6

View file

@ -722,8 +722,12 @@
width: 5rem;
}
// Wide enough for the longest catalog label ("cuillère à soupe") not to
// clip was sized for the old free-text input's short values ("g",
// "unité") before unit became a <select> over the reference catalog
// (see IngredientRow.tsx), left too narrow for that one.
&__unit {
width: 6rem;
width: 11rem;
}
&__remove {