Onboarding: use ocean background image, show full expertise tag names
All checks were successful
Build and Push Docker Image / build (push) Successful in 9m32s

- Replace blue gradient with ocean.png background (matches email templates)
- Display expertise tags one per line with full names (no truncation)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt
2026-02-17 11:38:26 +01:00
parent d80043c4aa
commit a006c6505c
2 changed files with 4 additions and 4 deletions

View File

@@ -212,7 +212,7 @@ export function ExpertiseSelect({
</button>
{isExpanded && (
<div className="grid grid-cols-1 sm:grid-cols-2 gap-1 p-2">
<div className="grid grid-cols-1 gap-1 p-2">
{categoryTags.map((tag) => {
const isSelected = value.includes(tag.name)
const isLocked = isTagLocked(tag.name)
@@ -261,7 +261,7 @@ export function ExpertiseSelect({
<Check className="h-2 w-2 text-white" />
))}
</div>
<span className="text-xs truncate">{tag.name}</span>
<span className="text-xs">{tag.name}</span>
</Button>
)
})}