Closed
Description
Preconditions
- Magento 2.2.4
Steps to reproduce
- open list view of products on a page
- inspect the list
.column.main .product-items
and one product.products-list .product-item
Expected result
- there should not be any extraneous styles
Actual result
- there are negative and positive margins which do nothing combined
The following code would remove it:
.products-list .product-item {
padding-left: 0;
}
.column.main .product-items {
margin-left: 0;
}
In general I see no sense in these margins and paddings.
See