Put up a test album, and added a bunch of images to it. When browsing it, I noticed the last two images in the album have been resized down and given a huge border (or the grid item has been given a strange background-color).
In the above example, it only appears when the browser window is expanded to view the full-width of the site, but if you're looking to replicate YMMV (might appear on larger screen sizes, may not appear on smaller).
Checking the CSS, I noticed the background for the grid was given, for the figure:
background: oklch(40% calc(var(--i-base-c) * 40%) var(--i-base-h));
...while the images themselves were given:
object-fit: scale-down;
Ideally, the images wouldn't be scaled down and they'd fill the entire space of the light blue color displayed in the image above.
Recommended Comments