Hi I need help changing the color of the add to cart button in dawn theme.

I added a line of code that changed the “add to cart” button the color I wanted but it only worked on desktop not mobile. The add to cart button on mobile is still black and I would like to change it but cannot figure out how? The store URL is honeybeehygiene.store. Thank you in advance for any help!!!

Hi, @scarter99

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> base.css ->paste the below code at the bottom of the file.
.product-form__submit {
    background: ff00ff;
}

.product-form__submit::after {
    box-shadow: unset;
}