Skip to content

Commit 552ab40

Browse files
committed
Small tweaks
1 parent 795f741 commit 552ab40

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

apps/webapp/app/components/onboarding/TechnologyPicker.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export function TechnologyPicker({
178178
<span
179179
key={item}
180180
className={cn(
181-
"flex items-center gap-1 rounded-sm border py-0.5 pl-1.5 pr-1 text-xs font-medium text-white",
181+
"flex items-center gap-1 rounded-sm border py-0.5 pl-1.5 pr-1 text-xs font-medium text-text-bright",
182182
getPillColor(item)
183183
)}
184184
>
@@ -187,7 +187,7 @@ export function TechnologyPicker({
187187
type="button"
188188
onClick={() => removeItem(item)}
189189
aria-label={`Remove ${item}`}
190-
className="ml-0.5 flex items-center hover:text-white/70"
190+
className="ml-0.5 flex items-center transition hover:text-text-bright/70"
191191
>
192192
<XMarkIcon className="size-3.5" />
193193
</button>
@@ -213,9 +213,7 @@ export function TechnologyPicker({
213213
}}
214214
virtualFocus
215215
>
216-
<Ariakit.Select
217-
className="group flex h-8 w-full items-center rounded bg-charcoal-750 pl-2 pr-2.5 text-sm text-text-dimmed ring-charcoal-600 transition focus-custom hover:bg-charcoal-650 hover:ring-1"
218-
>
216+
<Ariakit.Select className="group flex h-8 w-full items-center rounded bg-charcoal-750 pl-2 pr-2.5 text-sm text-text-dimmed ring-charcoal-600 transition focus-custom hover:bg-charcoal-650 hover:ring-1">
219217
<div className="flex grow items-center">
220218
<CubeIcon className="mr-1.5 size-4 flex-none text-text-dimmed" />
221219
<span>Select your technologies…</span>
@@ -280,7 +278,7 @@ export function TechnologyPicker({
280278
onChange={(e) => setOtherInputValue(e.target.value)}
281279
onKeyDown={handleOtherKeyDown}
282280
placeholder="Type and press Enter to add"
283-
className="pl-0.5 flex-1 border-none bg-transparent text-2sm text-text-bright shadow-none outline-none ring-0 placeholder:text-text-dimmed focus:border-none focus:outline-none focus:ring-0"
281+
className="flex-1 border-none bg-transparent pl-0.5 text-2sm text-text-bright shadow-none outline-none ring-0 placeholder:text-text-dimmed focus:border-none focus:outline-none focus:ring-0"
284282
autoFocus
285283
/>
286284
<ShortcutKey

apps/webapp/app/routes/_app.orgs.$organizationSlug_.projects.new/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function MultiSelectField({
8181
<Select<string[], string>
8282
value={value}
8383
setValue={setValue}
84-
placeholder="Select options"
84+
placeholder="Select some options"
8585
variant="secondary/small"
8686
dropdownIcon
8787
icon={icon}

0 commit comments

Comments
 (0)