Skip to content

Commit

Permalink
fix(inputs): placeholder colors again
Browse files Browse the repository at this point in the history
  • Loading branch information
safiranugroho committed Oct 22, 2023
1 parent 6aafdd4 commit 371aac3
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,19 +127,24 @@ select::-ms-expand {
display: none;
}

input::placeholder {
input::-webkit-input-placeholder {
color: currentColor;
opacity: 0.8;
opacity: 0.5;
}

input:-ms-input-placeholder {
input::-moz-placeholder {
color: currentColor;
opacity: 0.8;
opacity: 0.5;
}

input::-webkit-input-placeholder {
input::-ms-placeholder {
color: currentColor;
opacity: 0.5;
}

input::placeholder {
color: currentColor;
opacity: 0.8;
opacity: 0.5;
}

p {
Expand Down

0 comments on commit 371aac3

Please sign in to comment.