Currently, the menu options are hidden due to scroll which the user is not aware of and may miss the options. Use below custom CSS to display all the menu items without scroll.
.account-menu
{
position: relative;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: 100px 100px;
grid-gap: 5px;
}