How can I resize my small empty cart button?

My “cart button is empty” is too small & I would like to change its size. How can I do that?

This is the shop: https://forher.boutique/cart

@forher
Hello,

.button {
  min-width: 40px !important;
  min-height: 20px !important;
}

Remove this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Like This

Hi @forher
Please add this CSS code in your base.css

.cart__warnings .button {
    min-width: 40px!important;
    min-height: 50px!important;
}