List group items within Panels should match padding
Created by: mladenplavsic
When list group is within a panel, it stretches to 100%, and that's OK. It would be nice to have padding the same for panel and list-group-item, as currently it is different:
.panel { padding: 15px; } .list-group-item { padding: 10px 30px 10px 15px; }
How about adding:
.panel .list-group .list-group-item { padding: 15px; }