Changed flag search input text to black when in light mode

This commit is contained in:
NewHappyRabbit
2025-02-22 01:54:23 +02:00
parent 5898f0360c
commit ec2ba4eece
+1 -1
View File
@@ -162,7 +162,7 @@ export class FlagInput extends LitElement {
: "hidden"}"
>
<input
class="h-[2rem] border-none text-center border border-gray-300 rounded-xl shadow-sm text-2xl text-center focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 dark:border-gray-300/60 dark:bg-gray-700 dark:text-white"
class="h-[2rem] border-none text-center border border-gray-300 rounded-xl shadow-sm text-2xl text-center focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 text-black dark:border-gray-300/60 dark:bg-gray-700 dark:text-white"
type="text"
placeholder="Search..."
@change=${this.handleSearch}