Skip to content

Commit e977f20

Browse files
herzadinataBOCOVO
authored andcommitted
fix(dblm-ext): search dropdown text color now made darker
1 parent a750159 commit e977f20

File tree

1 file changed

+4
-2
lines changed
  • packages/json-table-schema-visualizer/src/components/Search

1 file changed

+4
-2
lines changed

packages/json-table-schema-visualizer/src/components/Search/Search.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,12 @@ const Search = ({ tables }: SearchProps) => {
107107
className="w-full px-4 py-2 text-left text-sm hover:bg-gray-100 dark:hover:bg-gray-600 flex flex-col items-start"
108108
>
109109
<div className="flex space-x-2 w-full items-start">
110-
<span className="text-xs text-gray-500 dark:text-gray-400 mt-[2px]">
110+
<span className="text-xs mt-[2px]">
111111
{result.type === "table" ? "📋" : "🔤"}
112112
</span>
113-
<span className="font-medium break-all">{result.name}</span>
113+
<span className="font-medium break-all text-gray-700">
114+
{result.name}
115+
</span>
114116
</div>
115117
{result.type === "column" && (
116118
<div className="mt-1 text-xs text-gray-500 dark:text-gray-400 break-all">

0 commit comments

Comments
 (0)