Fix: Application Search text color should be light in dark mode (#9788)

Fixes #8707
This commit is contained in:
Mark Percival
2024-05-20 17:55:16 -04:00
committed by GitHub
parent 44d7e81a93
commit d07508b9a4

View File

@ -35,6 +35,9 @@ export class LibraryPageApplicationList extends AKElement {
input:focus {
outline: 0;
}
:host([theme="dark"]) input {
color: var(--ak-dark-foreground) !important;
}
`,
];
}