Skip to content

Commit

Permalink
fix(input): helper wrapper max width
Browse files Browse the repository at this point in the history
  • Loading branch information
cbxalves committed Oct 28, 2024
1 parent 263afd7 commit d0503ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/yoga/src/Input/native/Helper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const HelperWrapper = styled.View(
},
}) => `
width: ${full ? '100%' : `${input.width}px`};
max-width: ${input.width}px;
max-width: ${full ? '100%' : `${input.width}px`};
flex-direction: row;
justify-content: space-between;
Expand Down

0 comments on commit d0503ac

Please sign in to comment.