How can I make the cart button rounded on the Emerge theme?

https://kevsjuice.com/

https://kevsjuice.myshopify.com/
PW: aickeu

I would like to change the cart button to be rounded instead of square - see attached reference (currently square)

Screen Shot 2022-04-22 at 6.47.06 PM.png

@oliverjames

even no any square box also.
Add a square box first.

Please add below css in bottom of assets/theme–async.css file

.header–cart-link {
border-radius: 14px;

}
Thank you.

It will only appear if you have an added product…

Did not work sadly :disappointed_face:

please try this

.header–cart-link[data-has-items=true] {
border-radius: 14px ;

}
Thank you.

still no luck, thank you though.

@oliverjames

@media only screen and (min-width: 768px){
.header--cart-link[data-has-items=true] {
    border-radius: 25px !important;
}
}

Add this code in the bottom of the assets/theme–async.css file

Thank you!