Merge branch 'main' into 'main'

fix: add spfn staff cards text wrapping (should fix the website not being readable on mobile!)

See merge request spfn/spfn-website!2
This commit is contained in:
red binder 2026-04-25 22:14:59 +00:00
commit 7eb84e1eb8

View file

@ -277,19 +277,21 @@ code {
border: 4px solid #a00b0b; border: 4px solid #a00b0b;
} }
.team-members { .team-member img {
display: flex; width: 64px;
flex-direction: column; height: 64px;
align-items: center; max-width: 64px;
padding: 8px; max-height: 64px;
max-width: 2000px;
margin: 0 auto; object-fit: cover;
flex: 1; flex-shrink: 0;
border-radius: 12px;
} }
.member-row { .member-row {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap;
width: 100%; width: 100%;
justify-content: center; justify-content: center;
} }
@ -299,12 +301,13 @@ code {
margin: 8px 8px; margin: 8px 8px;
padding: 8px 8px; padding: 8px 8px;
border-radius: 15px; border-radius: 15px;
align-items: flex-start;
gap: 12px;
flex: 1 1 280px;
max-width: 600px; max-width: 600px;
height: 10rem;
display: flex; display: flex;
flex-direction: row;
box-sizing: border-box; box-sizing: border-box;
flex: 0 1 30%; min-width: 0;
} }
.team-link { .team-link {