Removing "continue shopping" button when cart is empty for Dawn theme

Hello, I’m trying to remove the “continue shopping” button from the cart page when cart is empty. Does anyone know how to do on Dawn theme?

Hi @aeverett88

You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.cart__warnings a[href="/collections/all"] {
display: none;
}

Hi @aeverett88 ,

Go to Assets > base.css and paste this at the bottom of the file:

cart-items.is-empty .cart__warnings .button {
    display: none !important;
}

Hope it helps!

This worked! Thank you.