Skip to content

Commit

Permalink
chore: add suggestion role button + cursor pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
rbqdev committed Apr 6, 2024
1 parent 417b357 commit 661fa4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
align-items: center;
gap: var(--space-8);
padding: var(--space-8);
cursor: pointer;
}

.autocomplete--suggestion:not(:last-child):not(:first-child:last-child) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const SuggestionsList = ({
key={`${suggestion.name}-${key}`}
className="autocomplete--suggestion"
onClick={() => onClickSuggestion(suggestion)}
role="button"
>
<HighlightWord textBase={value} text={suggestion.name} />
</div>
Expand Down

0 comments on commit 661fa4e

Please sign in to comment.