Skip to content

Commit

Permalink
added sizing and reduce padding
Browse files Browse the repository at this point in the history
  • Loading branch information
marcodpt committed Oct 14, 2024
1 parent 1f70708 commit 9abdf7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ctrl/inputs/typeahead/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,13 @@ export default ({
'd-none',
'w-100',
'position-absolute',
'z-3'
'z-3',
size == 'sm' ? 'small' : size == 'lg' ? 'fs-5' : ''
]
}, options.map((o, i) =>
button({
class: [
'py-1',
'list-group-item',
'list-group-item-action',
i == active ? 'active' : ''
Expand Down

0 comments on commit 9abdf7c

Please sign in to comment.