How can I change the color of selected buttons on mobile view?

Hi I want to change the color of the, drawer menu icon (enabled for mobile view), and cart icon to be switched to black color.

Thanks for your help!

Hi,

Try adding this code to the bottom of theme.scss.css.

@media screen and (max-width: 1025px) {
.site-nav__link.site-nav__link--icon.js-drawer-open-button-left .material-icons-sharp {
  color:#000;
}
.site-nav__link.site-nav__link--icon.cart-link.js-drawer-open-button-right .material-icons-sharp {
  color:#000;
}
}

@Nick_Marketing Thanks a lot nick!

@RosalynnSkin

You are welcome! I am glad the solution worked.