Hello,
I am using Dawn version 11.0 and I would like to change the “Follow on Shop” button color.
From
To
Using inspect, the code is
.follow-icon-wrapper:before {
background: #5433EB;
}
However, I am not finding this code in base.css or section-footer.css.
I tried writing the following code into base.css and section-footer.css but no changes are made:
.follow-icon-wrapper:before {
background: white !important;
}
In section-footer.css the following code is found:
.footer__follow-on-shop {
display: flex;
text-align: center;
color: white;
}
When I change it to the following:
.footer__follow-on-shop {
display: flex;
text-align: center;
color: white;
background: white; (ultimately, I want it to be transparent but I am just trying to find where the code is to make the change)
}
It only changes the color behind the button (as shown below):

Any further suggestions would be so greatly appreciated.
Thank you!