Xyphyn / photon

An opinionated web client for Lemmy to help users discover the fediverse.
https://phtn.app
GNU Affero General Public License v3.0
389 stars 43 forks source link

Site banner cut off #431

Open Tealk opened 2 months ago

Tealk commented 2 months ago

Describe the bug The banner is cut off in width. The problem is the fixed specification of the height:

.h-32 {
  height: 8rem;
}

Expected behavior You would either have to remove it or adjust it so that it is not a fixed value.

Screenshots image

Versions

sevonj commented 2 months ago

I've been annoyed by the same thing for a while, and was just working on a proposal.

I wouldn't change the fixed size, but rather fit the image with contain instead of cover.

(See object-fit)

image