Hi there,
I used some code I found in this section for another person to change the background of the cart drawer in Dawn Theme.
Basically the code is working, but it’s missing an element that I want to change on my website:
Namely, the quantity selector background I want to change from black to red, same as the background essentially.
I also want to change the ‘estimated total price’ to white, rather than than the dark orange it is in this picture.

This is the code I’m using as of right now to make the current adjustments.
.drawer__heading { color: white; } .cart-items thead th { color: white; } .cart-drawer .cart-item>td+td { color: white !important; } .cart-item__name { color: white !important; } .drawer.active { color: white !important; } h2.totals__total { color: white !important; } .rte>*:last-child { color: white !important; text-decoration: none; } .drawer.active .drawer__inner { background: red; } .drawer__header { background: red; } .drawer__close { color: white !important; } .cart-drawer .cart-items thead { background: red; } .drawer__footer { background: red; }Thanks!
