How can I modify the checkout button in my cart?

How to change check out button in cart?

Hi @Hanz1X

What would you be needing to adjust on the button?

Hi @JHKCreate

I want to change the button color to black

@Hanz1X

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste bellow code in the bottom of the file
.cart__buttons .btn {
    background: #000;
    color: #fff;
}

@DelightCart