How can I reduce the size of my on sale badge?

Hey, how can I make the on sale badge smaller.
my website is: doorstepdrip.com

it currently looks like this:

I’d like for it to be a little smaller and maybe even the padding of the badge to be smaller as well

thank you

Hello @doorstepdrip :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.product-card-wrapper .badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
}

The result

Hope that helps!