I want to reduce how thick the list-group-item are, whilst keeping the title text fitting.
<ul class="list-group">
<a href="#id" class="list-group-item list-group-item-info" data-toggle="collapse">Title</a>
</ul>
.list-group-item {
height: 10px;
}
This successfully reduces the thickness, but the Title text remains too big. I suspect height is the wrong property to use?