How can I reduce the size of variant selector pills in Dawn theme?

Hi @9INE

We can adjust the size cause it will be squeeze out but we can reduce the padding.

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-form__input input[type='radio'] + label {
    padding: 0.7rem 1rem !important;
}
1 Like