A code snippet to reduce the size of the detail view thumbnail in an LFD
Use the following in the screen CSS:
@media screen and (min-width:600px) {
.small-card-detail-wrapper .small-card-list-detail-image-wrapper, {
height: 40vh;
}
.small-card-detail-wrapper .small-card-list-detail-image {
height: 40vh;
width: 300px;
left: 155px;
}
}
To learn more on accessing the developer options see here
Before
After