Skip to content

Commit

Permalink
fix: update button background and button type in dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
shawn320 committed Aug 17, 2023
1 parent cf77d83 commit 5fd889a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/CustomDropdown/CustomDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export const CustomDropdown = (props) => {
<button
onClick={() => handleOptionClick(option.value)}
className="dropdown-option"
style={{ backgroundColor: "#FFFFFF" }}
type="button"
>
{option.value}
</button>
Expand All @@ -115,6 +117,8 @@ export const CustomDropdown = (props) => {
<button
onClick={() => handleOptionClick(option.value)}
className="dropdown-option"
style={{ backgroundColor: "#FFFFFF" }}
type="button"
>
{option.value}
</button>
Expand Down

0 comments on commit 5fd889a

Please sign in to comment.