style: normalize placeholder appearance between browsers

There was not enough contrast on Webkit browsers against value color,
so we're using good Firefox default opacity for everyone.
This commit is contained in:
Colin Darie 2022-07-05 13:27:48 +02:00
parent e0c5608218
commit 8c9464670c
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4

View file

@ -565,12 +565,13 @@
}
.fconnect-form {
input[type=password] {
input[type='password'] {
margin-bottom: 16px;
}
}
input::placeholder,
textarea::placeholder {
opacity: 0.6; // normalize opacity across browsers
color: $dark-grey;
}