Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
web: change code monitoring form label margins (#22954)
Browse files Browse the repository at this point in the history
  • Loading branch information
valerybugakov authored Jul 19, 2021
1 parent a2cc571 commit 69cced7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export const CodeMonitorForm: React.FunctionComponent<CodeMonitorFormProps> = ({
<input
id="code-monitor-form-name"
type="text"
className="form-control my-2 test-name-input"
className="form-control mb-2 test-name-input"
required={true}
onChange={event => {
onNameChange(event.target.value)
Expand All @@ -178,7 +178,7 @@ export const CodeMonitorForm: React.FunctionComponent<CodeMonitorFormProps> = ({
<label htmlFor="code-monitor-form-owner">Owner</label>
<select
id="code-monitor-form-owner"
className="form-control my-2 code-monitor-form__owner-dropdown w-auto"
className="form-control mb-2 code-monitor-form__owner-dropdown w-auto"
disabled={true}
>
<option value={authenticatedUser.displayName || authenticatedUser.username}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const FormActionArea: React.FunctionComponent<ActionAreaProps> = ({
<input
id="code-monitoring-form-actions-recipients"
type="text"
className="form-control my-2"
className="form-control mb-2"
value={`${authenticatedUser.email || ''} (you)`}
disabled={true}
autoFocus={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ exports[`FormActionArea Error is shown if code monitor has empty description 1`]
</label>
<input
autoFocus={true}
className="form-control my-2"
className="form-control mb-2"
disabled={true}
id="code-monitoring-form-actions-recipients"
required={true}
Expand Down

0 comments on commit 69cced7

Please sign in to comment.