Email input color fix

This commit is contained in:
David Hill
2025-10-02 16:11:55 +01:00
parent 6022d12ea2
commit d56e81f02b
2 changed files with 17 additions and 0 deletions

View File

@@ -166,6 +166,15 @@ body {
transition: background-color 5000000s ease-in-out 0s; transition: background-color 5000000s ease-in-out 0s;
} }
input:-webkit-autofill {
-webkit-text-fill-color: var(--color-text-strong) !important;
}
input:-moz-autofill {
-moz-text-fill-color: var(--color-text-strong) !important;
}
[data-component="container"] { [data-component="container"] {
max-width: 67.5rem; max-width: 67.5rem;
margin: 0 auto; margin: 0 auto;

View File

@@ -94,6 +94,14 @@ body {
transition: background-color 5000000s ease-in-out 0s; transition: background-color 5000000s ease-in-out 0s;
} }
input:-webkit-autofill {
-webkit-text-fill-color: var(--color-text-strong) !important;
}
input:-moz-autofill {
-moz-text-fill-color: var(--color-text-strong) !important;
}
[data-component="container"] { [data-component="container"] {
max-width: 67.5rem; max-width: 67.5rem;