Skip to content

Commit

Permalink
fix: change color of input box labels (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenverCoder1 authored Jun 28, 2023
1 parent 4a65853 commit c319944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/FileUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class FileUpload extends React.Component<{ label: string, secondaryLabel: string
const { label, secondaryLabel } = this.props;
return (
<Form.Group controlId="formFile" className="mb-3">
<Form.Label>{label} <span className="text-muted">{secondaryLabel}</span></Form.Label>
<Form.Label>{label} <span className="text-white-50">{secondaryLabel}</span></Form.Label>
<Form.Control
type="file"
onChange={this.handleChange}
Expand Down
2 changes: 1 addition & 1 deletion client/src/TextBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TextBox extends React.Component<{ label: string, secondaryLabel: string, r
render = () => {
const { label, secondaryLabel, required, value } = this.props;
return <Form.Group className="mb-3">
<Form.Label>{label} <span className="text-muted">{secondaryLabel}</span></Form.Label>
<Form.Label>{label} <span className="text-white-50">{secondaryLabel}</span></Form.Label>
<Form.Control type="text"
value={value}
required={required}
Expand Down

0 comments on commit c319944

Please sign in to comment.