feat: add auto-generated pseudonyms and identicon avatars for users

This commit is contained in:
2026-02-11 07:20:06 +01:00
parent fc0ac5add2
commit 526036c907
12 changed files with 133 additions and 12 deletions

View File

@@ -265,6 +265,26 @@ app-header .btn-profile {
border-radius: var(--radius-md);
}
app-header .btn-profile-avatar {
padding: 0;
width: 36px;
height: 36px;
border-radius: var(--radius-full);
overflow: hidden;
border: 2px solid var(--color-border);
transition: border-color var(--transition-fast);
}
app-header .btn-profile-avatar:hover {
border-color: var(--color-accent);
}
app-header .btn-profile-avatar svg {
width: 32px;
height: 32px;
display: block;
}
app-header .btn-login-text,
app-header .btn-profile-text {
display: inline;