Using SCSS/bootstrap 4.5 in my HTML, I have set a maximum width of 250px for images with a specific class.
max-width: 250px;
height: auto;
While this works fine for larger images, smaller ones end up looking distorted...
Is there a way to prevent small images from being stretched beyond their original size?
Thank you!