Skip to content

Commit 851426d

Browse files
committed
[gephi-lite] fix datalab search input for dark mode
1 parent 885dd92 commit 851426d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/gephi-lite/src/views/dataPage/TopBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ const SearchForm: FC<{ type: ItemType; input: string; onChange: (input: string)
5454
value={search}
5555
onChange={(e) => setSearch(e.target.value)}
5656
/>
57-
<button className="btn btn-outline-dark" type="button" onClick={() => onChange("")} disabled={!input}>
57+
<button className="btn btn-outline-secondary" type="button" onClick={() => onChange("")} disabled={!input}>
5858
<CloseIcon />
5959
</button>
60-
<button className="btn btn-outline-dark" type="submit">
60+
<button className="btn btn-outline-secondary" type="submit">
6161
<SearchIcon />
6262
</button>
6363
</form>

0 commit comments

Comments
 (0)