last item in my dropdown menu is not showing

Hi @kldlaz

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(max-width:767px){
.tmenu_app_mobile .tmenu_item_mobile .tmenu_item_link {
    padding: 7px 15px !important;
}
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Hello @kldlaz
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->theme.scss.css
add this code at the end of the file and save.

.tmenu_app_mobile .tmenu_item_mobile .tmenu_item_link {
padding: 8px 15px;
}

result

Thanks