Fix padding on field labels with prompt on launch checkboxes

This commit is contained in:
mabashian 2020-09-23 15:27:31 -04:00
parent aac17b9d2c
commit b714a0dc7e
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import { JSON_MODE, YAML_MODE } from './constants';
const FieldHeader = styled.div`
display: flex;
justify-content: space-between;
padding-bottom: var(--pf-c-form__group-label--PaddingBottom);
`;
const StyledCheckboxField = styled(CheckboxField)`

View File

@ -7,6 +7,7 @@ import { CheckboxField, FieldTooltip } from '../FormField';
const FieldHeader = styled.div`
display: flex;
padding-bottom: var(--pf-c-form__group-label--PaddingBottom);
`;
const StyledCheckboxField = styled(CheckboxField)`