I am currently facing an issue with the autocomplete input on my web app. The suggested list items have a height that is too small, making it difficult to select one item on a tablet using fingers.
.ui-autocomplete.ui-widget {
font-family: Verdana, Arial, sans-serif;
font-size: 15px;
heigth: 30px; /* This may not be working */
}
While the font size adjustment seems to be effective, I am having trouble with the height property. Any suggestions on what I might be missing? Thank you!