[Vuejs]-How to stretch product's rows to maximum?

0👍

The screenshot shows padding in .list-group-item that could be reduced to 2px:

.list-group-item
  padding: 2px

Also, .list-group should take the full width available in the row:

.list-group
  width: 100%

demo

Leave a comment