How can I move the sale button to align with the price in my theme?

Need to move it to be like in same line with it

Hello @naveroshop :waving_hand:

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

.price__container {
    display: inline-block;
}

.price__container .price-item {
    font-size: 14px !important;
}

The result

Hope that helps!