Skip to content

Commit

Permalink
fix: change color of upload box label
Browse files Browse the repository at this point in the history
  • Loading branch information
DenverCoder1 authored Jun 28, 2023
1 parent fae5944 commit c8c250a
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit c8c250a

Please sign in to comment.