Make collection grid full width on mobile - dawn theme shopify

I have added this code below which makes the collection grid full width on a desktop and it works perfectly, however when I view it on a mobile, there is still some white space on the far left and far right. How do I alter the code to fix this?

@media screen and (min-width: 750px)
{
.grid {
    column-gap: 5px !important;
}
.page-width {
    max-width: 100% !important;
}
.page-width {
    padding: 0px !important;
}
header.header.header--top-center.header--mobile-center.page-width.header--has-menu {
    width: 60% !important;
}
}

Hi @emekayode

Can i take a look? Would you mind to share the store URL? Thanks!

its not a current theme i’ve published, its a theme which i’m just tweaking the code before I publish

You can also share the preview. For the theme that you currently working. So i can take a look what possibly that extra space. Thanks!

link: https://x5zcir1e18mnevaz-17240367.shopifypreview.com

Thanks for the info, check this one. If you dont like to overide it you can edit the code on the section-collection-list.css just look for the same selector.

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:

@media screen and (max-width: 749px){
.section-collection-list .collection-list:not(.slider) {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!