neptunian / react-photo-gallery

React Photo Gallery
http://neptunian.github.io/react-photo-gallery/
Other
1.97k stars 310 forks source link

Is is possible to cover images in gridview? #213

Open mgook opened 2 years ago

mgook commented 2 years ago

PhotoGallery stretches the image to show it. Can I crop the image without stretching it? Like setting the value of cover in the object-fit property.

chulanovskyi-bs commented 2 years ago

Just add the following to the styles:

.react-photo-gallery--gallery
  img
    object-fit: cover

(it's .sass syntax, btw)