You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when tapping in the space between options in the mobile dialog would result in deselection and dismissal of the dialog, then learned that this was because margin-top: 16px is being set between each option:
I switched these to padding and that seems to have fixed it:
.hw-combobox__dialog__listboxli {
/* Switch margin to padding so taps don't fall through and dismiss the dialog */margin-top:0;
padding-top:16px;
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I noticed that when tapping in the space between options in the mobile dialog would result in deselection and dismissal of the dialog, then learned that this was because
margin-top: 16px
is being set between each option:I switched these to padding and that seems to have fixed it:
Beta Was this translation helpful? Give feedback.
All reactions