How can I remove extra padding from my Dawn theme buttons?

My variants button padding very big. How ı remove this padding from button

1 Like

@zamanhasanov96

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

eycuf.com

1 Like

Please add below css in bottom of assets/section-main-product.css file

.product-form__input input[type=radio]+label {

padding: 0.8rem 1.3rem;

}

Thank you.

@zamanhasanov96

thanks for url can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-main-product.css ->paste below code at the bottom of the file.
.product-form__input input[type=radio]+label {padding: 8px 10px;}
/* change value as you like */