Change placeholder text color

This commit is contained in:
Taylor Helsper 2020-08-03 20:55:39 -05:00
parent 9fb2b7d401
commit 79ea975e78

View File

@ -679,4 +679,15 @@ input:checked + .slider:before {
}
.slider.round:before {
border-radius: 50%;
}
/* Placeholder colors */
::-webkit-input-placeholder { /* Edge */
color: #CCCCCC;
}
:-ms-input-placeholder { /* Internet Explorer */
color: #CCCCCC;
}
::placeholder {
color: #CCCCCC;
}