Skip to content

Commit

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

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

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

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

p {
line-height: 1.25em;
}

0 comments on commit 6aafdd4

Please sign in to comment.