Skip to content

Commit

Permalink
InputControl: Ensure consistent placeholder color
Browse files Browse the repository at this point in the history
  • Loading branch information
SainathPoojary committed Feb 26, 2025
1 parent fc40147 commit f581ed7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,15 @@ export const Input = styled.input< InputProps >`
&::-webkit-input-placeholder {
line-height: normal;
color: ${ COLORS.ui.darkGrayPlaceholder };
}
&::-moz-placeholder {
color: ${ COLORS.ui.darkGrayPlaceholder };
}
&:-ms-input-placeholder {
color: ${ COLORS.ui.darkGrayPlaceholder };
}
&[type='email'],
Expand Down

0 comments on commit f581ed7

Please sign in to comment.