Fix dashboard input theming in Steampipe Cloud dark mode. Fixes #3181.

This commit is contained in:
Mike Burgess
2023-03-02 16:06:57 +00:00
parent 9a15c8a5d5
commit 4e55d8e0fa

View File

@@ -65,7 +65,7 @@ const TextInput = (props: InputProps) => {
type="text"
name={props.name}
id={props.name}
className="flex-1 block w-full bg-background-panel rounded-md border border-black-scale-3 pr-8 overflow-x-auto text-sm md:text-base disabled:bg-black-scale-1 focus:ring-0"
className="flex-1 block w-full bg-dashboard-panel rounded-md border border-black-scale-3 pr-8 overflow-x-auto text-sm md:text-base disabled:bg-black-scale-1 focus:ring-0"
onChange={updateValue}
onKeyPress={(e) => {
if (e.key !== "Enter") {