feat: implement user profiles with achievements and primary badge system #58

Merged
naomi merged 17 commits from feat/user-profiles into main 2026-02-19 22:21:18 -08:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 1f62d64ace - Show all commits
@@ -1401,6 +1401,11 @@ import { ProfileReportWithUsers, CommentReportWithDetails, ReportStatus, ReportR
cursor: pointer; cursor: pointer;
} }
select.form-control option {
background: var(--witch-moon);
color: var(--witch-purple);
}
textarea.form-control { textarea.form-control {
resize: vertical; resize: vertical;
min-height: 100px; min-height: 100px;
@@ -304,6 +304,11 @@ import { User, PrimaryBadge } from '@library/shared-types';
cursor: pointer; cursor: pointer;
} }
.form-group select option {
background: #1a1a2e;
color: var(--text-colour, #e0e0e0);
}
.form-group input[type="text"]:focus, .form-group input[type="text"]:focus,
.form-group textarea:focus, .form-group textarea:focus,
.form-group select:focus { .form-group select:focus {