I have a Best Sellers featured collection on my homepage. On desktop view it shows 9 products but on mobile view it only shows 5 products (see screenshot below).
Please go to your Online store > Themes > Actions > Edit code > Assets > theme.css.liquid file and add those CSS codes to the bottom of the file to make it all products of featured collection
@media only screen and (max-width: 749px) {
#shopify-section-featured-products .grid__item.small--hide {
display: block!important;
}
}