Skip to content

Commit

Permalink
updated dropdown bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Zenith committed Apr 16, 2024
1 parent fc2de83 commit 80ed3c2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions client/src/pages/UpdateApplicationStatusPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function UpdateApplicationStatusPage() {
<select
style={{
cursor: "pointer",
backgroundColor: "transparent",
backgroundColor: "#282828",
color: "white",
font: "400 1.2rem Inter",
border: "1px solid #ba9ffb",
Expand All @@ -100,7 +100,13 @@ export default function UpdateApplicationStatusPage() {
</option>
{applications.map((app) => {
return (
<option key={app.id} value={app.id}>
<option
key={app.id}
value={app.id}
style={{
backgroundColor: "transparent",
}}
>
ID {app.id}: {app.jobTitle} (
{app.companyName})
</option>
Expand Down

0 comments on commit 80ed3c2

Please sign in to comment.