Add padding left and right side to match site

Hi I needed to add padding on left and right side on Mobile only to match rest of site. My site is https://vazluxe.com

thanks

Hi @Luxurymrkt
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

@media (max-width: 749px) {
    .grid.section.section--divider-none.section--vertical-padding-top-bottom {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
}

Result

Best,

DaisyVo