feat(web): add public master profiles
PR Checks / test-and-build (pull_request) Successful in 12m32s

Add sanitized public GM profiles with publication controls, public /gm/{slug} pages, and links from public game surfaces.

Bump version -> 3.5.0
This commit is contained in:
2026-05-29 00:08:14 +03:00
parent d81564c308
commit 0c1d3abd7e
21 changed files with 980 additions and 39 deletions
+52
View File
@@ -841,6 +841,58 @@ select option {
overflow-wrap: anywhere;
}
.profile-card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
}
.profile-form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
}
.master-profile-bio {
min-height: 7rem;
resize: vertical;
}
.master-profile-section {
margin-bottom: 1rem;
}
.master-profile-section h2 {
margin: 0 0 0.75rem;
font-family: 'Cinzel', serif;
}
.master-profile-club-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.master-profile-club-list a {
text-decoration: none;
}
.public-master-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--text-secondary);
font-family: 'Jura', sans-serif;
}
.public-master-link a {
color: var(--accent-primary);
font-weight: 600;
text-decoration: none;
}
/* === Campaign templates === */
.campaign-template-panel {
margin-bottom: 1.5rem;