AutosuggestInput: add icon to menu

This commit is contained in:
Alex Gleason 2021-11-01 13:53:30 -05:00
parent 4ef9a88f72
commit 23393710c7
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 7 additions and 1 deletions

View file

@ -104,7 +104,8 @@
}
.autosuggest-input__action {
display: block;
display: flex;
align-items: center;
padding: 10px;
border-radius: 4px;
font-weight: bold;
@ -115,4 +116,9 @@
&.selected {
background-color: var(--brand-color--med);
}
.svg-icon {
margin-right: 8px;
transform: translateY(-1px);
}
}