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
I found that ControlLabel (renders a label) doesn't have a bottom margin, and it sits right above the input when combined with FormControl:
ControlLabel
label
input
FormControl
<FormGroup> <ControlLabel>Name</ControlLabel> <FormControl type="text" /> </FormGroup>
We are currently getting a bottom margin in /learn thanks to Bootstrap: https://github.com/twbs/bootstrap/blob/f17f882df292b29323f1e1da515bd16f326cee4a/dist/css/bootstrap.css#L2609.
I think either ControlLabel should have a bottom margin of 5px, or the FormGroup component should add a space of 5px between its children.
FormGroup
The text was updated successfully, but these errors were encountered:
huyenltnguyen
No branches or pull requests
Description
I found that
ControlLabel
(renders alabel
) doesn't have a bottom margin, and it sits right above theinput
when combined withFormControl
:We are currently getting a bottom margin in /learn thanks to Bootstrap: https://github.com/twbs/bootstrap/blob/f17f882df292b29323f1e1da515bd16f326cee4a/dist/css/bootstrap.css#L2609.
I think either
ControlLabel
should have a bottom margin of 5px, or theFormGroup
component should add a space of 5px between its children.The text was updated successfully, but these errors were encountered: