Skip to content

Commit

Permalink
fix(CriteriaForm): Weight label size
Browse files Browse the repository at this point in the history
  • Loading branch information
LamaEats committed Feb 27, 2024
1 parent 6a205af commit 6d80dd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/CriteriaForm/CriteriaForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ const CriteriaWeightField = forwardRef<HTMLInputElement, WeightFieldProps>(
({ error, maxValue, value, onChange, name }, ref) => {
return (
<FormControl className={s.FormControl}>
<FormControlLabel color={gray7}>{tr('Weight')}</FormControlLabel>
<FormControlLabel size="s" color={gray7}>
{tr('Weight')}
</FormControlLabel>
<FormControlInput
outline
size="xs"
Expand Down

0 comments on commit 6d80dd8

Please sign in to comment.