Try this:
.thumbnail {
line-height: 150px; // height taken from OPs plunker
}
.thumbnail img {
margin: auto;
vertical-align: middle;
display: inline-block;
}
Add display: inline-block;
and set the line-height
to the parent anchor element to middle align images vertically.
LIVE EXAMPLE