#app-root .images-wrapper {
	height: 155px;
	overflow-y: scroll;
}

.images-wrapper > img {
    height: 120px; /*TODO fix height according to image AND wrapper dimensions */
    padding: 5px;
    border: 1px solid gray;
    border-radius: 5px;
    margin: 5px;
    background-size: contain;
    background-repeat: no-repeat;
}

.images-wrapper > img[src=""],
.images-wrapper > img:not([src]) { display: none; }

.images-wrapper > *:last-child {
	margin-top: 0;
	margin-bottom: 0;
}

