Input fields now do update the text color

This commit is contained in:
sageTheDM 2024-10-08 07:33:02 +02:00
parent 601b0324b8
commit d1602e3ad7
3 changed files with 7 additions and 0 deletions

View file

@ -33,6 +33,11 @@
height: 7vh;
}
.textInputField::placeholder {
color: var(--text-color); /* Change to desired placeholder color */
opacity: 1; /* Ensures full opacity (optional) */
}
.input input:focus {
border-color: var(--input-button-hover-color);
}