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:
parent
de500e1a8a
commit
0ff8775cf6
1 changed files with 5 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue