We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@freenow/wave
Inside FilePicker.tsx
<Outliner minHeight="5.125rem" alignItems="stretch" data-testid="filepicker-outliner" display="flex" disabled={disabled} hasValidFile={validFileSelected} error={error} justifyContent="space-between" onClick={onClickHandler} px={2} py={validFileSelected ? '1.25rem' : 3} >
The current setting of alignItems="stretch" in the <Outliner> is causing the upload icon on mobile screens to not center vertically correctly.
alignItems="stretch"
<Outliner>
Change the value for alignItems to center
center
The text was updated successfully, but these errors were encountered:
The issue is with icon positioning in flexbox on mobile only
Sorry, something went wrong.
No branches or pull requests
@freenow/wave
version: 1.29.0Relevant code
Inside FilePicker.tsx
What was expected to happen?
The current setting of
alignItems="stretch"
in the<Outliner>
is causing the upload icon on mobile screens to not center vertically correctly.Solution
Change the value for alignItems to
center
The text was updated successfully, but these errors were encountered: