Remove the search icon from the Shopify Dawn Them only on mobile

Hi @sim25ecom
Add below CSS code to base.css

@media only screen and (max-width: 650px) {
  .header__search {
    display: none;
  }
}
2 Likes