Impulse theme: Customer account is missing from mobile view

Topic summary

A user running the Impulse theme reports that customer account links appear on desktop but are missing from mobile view and the mobile sidebar menu.

Proposed Solution:
Another user suggests adding CSS code to the grid-mixin.css file to display the account link on mobile devices. The code targets screens with max-width 768px and modifies the display property of .site-nav__link elements.

Current Status:
The original poster cannot locate the grid-mixin.css file in their theme files. They attempted to add the code to theme.css instead, but this did not resolve the issue.

The problem remains unresolved, with the user seeking alternative approaches to make customer accounts visible on mobile.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hello,

I’ve enabled customers account for my shop and it showed up on the Desktop version. However it’s missing from the mobile view? How can I add it back and also add it to the side bar menu (mobile only). I’ve tried different solutions on here but nothing worked for me.

store: https://greentiger.co/

pw: cheese

hi @greentigershop
You can follow these step to achieve your result
Go to online store->edit code->grid-mixin.css file and paste this code

@media only screen and (max-width: 768px)
.site-nav__link.site-nav__link--icon.small--hide {
    display: inline-block !important;
}

Result:

If you need anything please like accept and reply this message

@BrainStation23 I searched and didn’t see the grid-mixin.css file. I tried pasting the code in the theme.css file and it didn’t do anything. Any ideas?