Force dark input bg with bare input selector

- add input, before typed selectors to catch all inputs
- include -moz-appearance:none
- hardcode #0a0e17 in .modal inputs too
This commit is contained in:
jp
2026-08-13 18:45:45 +01:00
parent 7c983198e9
commit e6ee7bef81

View File

@ -244,6 +244,7 @@ button:disabled {
box-shadow: var(--glow-purple);
}
input,
input[type="text"],
input[type="password"],
input[type="email"],
@ -259,6 +260,7 @@ input[type="date"] {
-webkit-text-fill-color: var(--text-primary);
transition: all 0.2s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}