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
When using an button with type=submit inside an InputGroup, in Chrome and Safari this does not render as expected and the button wraps into a new line
type=submit
InputGroup
See the broken-input-groups branch for a code example.
broken-input-groups
Pictured: (left) how it should look. (right) how it looks when type="submit" has been added to the button.
type="submit"
The text was updated successfully, but these errors were encountered:
@jordaneb screenshot? / whip up an example on a new branch.
Sorry, something went wrong.
Ah, this is a known issue. Though I can't find a specific GitHub issue for it now...
This is a problem with rendering any button component inside an input group. They don't correctly accept the display: table-cell; property.
button
display: table-cell;
Definitely needs fixing somehow.
No branches or pull requests
When using an button with
type=submit
inside anInputGroup
, in Chrome and Safari this does not render as expected and the button wraps into a new lineSee the
broken-input-groups
branch for a code example.Pictured: (left) how it should look. (right) how it looks when
type="submit"
has been added to the button.The text was updated successfully, but these errors were encountered: