Currently building a form for the website, but I’m struggling to style the “loading icon” after clicking the submit button, is there somewhere I could change that / which class does that icon belong to?
The loading icon is a SVG file inside a span with the class .loading
. It’s the original one from Bricks.
You can style it using:
root .submit-button-wrapper .loading svg {
// Your Styles
}
@Daniele I’ve tried fill: red !important;
as well as color: white;
but that didn’t seem to work, is that possible to get rid of the loading icon entirely?
Edit: I ended up using display: none;
to get rid of it. Thanks!!