Cropping thumbnails

PHOTO EMBED

Tue Apr 04 2023 03:28:28 GMT+0000 (Coordinated Universal Time)

Saved by @tofufu #css

.round {
    object-fit: cover;          // prevent image from stretching
    object-position: 0% 25%;    // move the crop around, [left/right] [up/down]
    aspect-ratio: 1/1;          // crops to a square
    border-radius: 50%;         // round corners
    width: 17em;                // size of image
}
content_copyCOPY