Glam - How do I fix the down arrows on mobile?

This issue has been fixed in Glam 1.0.2.  However, if you aren't wanting to fully update the theme, you can use the below code to fix this issue.

This issue fixes the issue with the arrows to the right of a drop down menu on mobile like the below screenshot.

Navigate to Appearance>Editor and you'll land on the style.css file.  Look for this section of code:

.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
        content: "\f347";
        float: right;
        font: normal 16px/1 'dashicons';
        height: 16px;
         padding: 16px 20px;
        right: 0;
        text-align: right;
        z-index: 9999;
    }

And you'll adjust the padding line to:

.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
        content: "\f347";
        float: right;
        font: normal 16px/1 'dashicons';
        height: 16px;
         padding: 5px;
        right: 0;
        text-align: right;
        z-index: 9999;
    }