fix artist images being squished on smaller width

This commit is contained in:
2026-03-01 15:42:03 -08:00
parent 1b6ff0c283
commit d73ae51b95

View File

@@ -265,6 +265,7 @@
flex-direction: row; flex-direction: row;
align-content: center; align-content: center;
width: 100%; width: 100%;
flex-wrap: wrap;
h1 { h1 {
color: #FFFFFF; color: #FFFFFF;
margin: 0; margin: 0;
@@ -287,6 +288,19 @@
width: 250px; width: 250px;
height: 250px; height: 250px;
border-radius: 100%; border-radius: 100%;
flex-shrink: 0;
min-width: 0;
}
}
@media (max-width: 600px) {
.profile-top {
justify-content: center;
gap: 15px;
}
.profile-top img {
width: 150px;
height: 150px;
} }
} }