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
Now each button has a different height depending on the words of each button:
All the buttons should have the same height.
I was checking responsive design for mobile devices, and I have seen this strange behaviour.
<Button.Group> <Button size="sm" color="light" onPointerDown={filterLastYear}> <span className={internalFilterDate === FilterDate.LAST_YEAR ? selectedButtonClassname : undefined}> Last year </span> </Button> <Button size="sm" color="light" onPointerDown={filterLastMonth}> <span className={internalFilterDate === FilterDate.LAST_MONTH ? selectedButtonClassname : undefined}> Last 30 days </span> </Button> <Button size="sm" color="light" onPointerDown={filterLastWeek}> <span className={internalFilterDate === FilterDate.LAST_WEEK ? selectedButtonClassname : undefined}> Last 7 days </span> </Button> <Button size="sm" color="light" onPointerDown={filterAlways}> <span className={internalFilterDate === FilterDate.ALWAYS ? selectedButtonClassname : undefined}> Always </span> </Button> </Button.Group>
The text was updated successfully, but these errors were encountered:
@rluders Hi! I opened a PR with a fix. Please check it when it's possible.
Sorry, something went wrong.
Fixed by #1498 in [email protected] release.
No branches or pull requests
Steps to reproduce
Current behavior
Now each button has a different height depending on the words of each button:
Expected behavior
All the buttons should have the same height.
Context
I was checking responsive design for mobile devices, and I have seen this strange behaviour.
The text was updated successfully, but these errors were encountered: