diff --git a/CHANGELOG.md b/CHANGELOG.md index 04d91b1..4620b70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog # 0.x.x: +- Fixed the artist image taking up the entire backgound on small Safari viewports. - Fixed image URL on the artist page not being URL encoded. diff --git a/static/style/artist.css b/static/style/artist.css index 9a07f94..b5a6ada 100644 --- a/static/style/artist.css +++ b/static/style/artist.css @@ -19,10 +19,16 @@ grid-area: image; object-fit: cover; width: 100%; - height: 100%; + max-height: 100%; border-radius: var(--radius); } +@media only screen and (min-width: 513px) { + .artist-image { + height: 100%; + } +} + .artist-info { grid-area: name; display: grid; @@ -149,7 +155,7 @@ grid-template-rows: auto; grid-template-areas: "image name" - "imagesocial" + "image social" "description description" "songs songs"; }