increased padding for suggestion menu

This commit is contained in:
Pramod Mahajan 2025-05-27 22:17:56 +05:30
parent 41d9db6fcc
commit 47ecbcdafd

View File

@ -38,12 +38,13 @@ const InputSuggestions = ({
/> />
{showSuggestions && filteredList.length > 0 && ( {showSuggestions && filteredList.length > 0 && (
<ul <ul
className="list-group shadow-sm position-absolute w-100 bg-white border rounded zindex-tooltip" className="list-group shadow-sm position-absolute w-100 bg-white border zindex-tooltip"
style={{ style={{
maxHeight: "180px", maxHeight: "180px",
overflowY: "auto", overflowY: "auto",
marginTop: "2px", marginTop: "2px",
zIndex: 1000, zIndex: 1000,
borderRadius:"0px"
}} }}
> >
{filteredList.map((org) => ( {filteredList.map((org) => (
@ -52,7 +53,7 @@ const InputSuggestions = ({
className="list-group-item list-group-item-action border-none " className="list-group-item list-group-item-action border-none "
style={{ style={{
cursor: "pointer", cursor: "pointer",
padding: "2px 12px", padding: "5px 12px",
fontSize: "14px", fontSize: "14px",
transition: "background-color 0.2s", transition: "background-color 0.2s",
}} }}