diff --git a/src/components/shared/expertise-select.tsx b/src/components/shared/expertise-select.tsx index 8354100..0d8d69e 100644 --- a/src/components/shared/expertise-select.tsx +++ b/src/components/shared/expertise-select.tsx @@ -137,7 +137,7 @@ export function ExpertiseSelect({ {/* Selected tags at the top */} {value.length > 0 && ( -
+
{value.map((name) => { const tag = getTag(name) const isLocked = isTagLocked(name) @@ -146,7 +146,7 @@ export function ExpertiseSelect({ key={name} variant="secondary" className={cn( - 'gap-1.5 py-1 px-2 text-sm', + 'gap-1 py-0 px-1.5 text-[11px] h-5 leading-tight', isLocked && 'opacity-75' )} style={{ @@ -155,7 +155,7 @@ export function ExpertiseSelect({ color: tag?.color || undefined, }} > - {isLocked && } + {isLocked && } {name} {!disabled && !isLocked && ( )}