Skip to content

Commit

Permalink
Merge pull request #846 from gympass/ENG-6605
Browse files Browse the repository at this point in the history
🚀 fix(input): helper wrapper max width
  • Loading branch information
flavia-moraes authored Oct 29, 2024
2 parents 263afd7 + d0503ac commit 2ecd3c3
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 2ecd3c3

Please sign in to comment.