fix: Fix stacked chevrons in project select dropdowns#1981
Merged
charlesvien merged 2 commits intomainfrom May 4, 2026
Merged
Conversation
Member
Author
This was referenced May 2, 2026
e396426 to
b936821
Compare
Contributor
Prompt To Fix All With AIFix the following 1 code review issue. Work through them one at a time, proposing concise fixes.
---
### Issue 1 of 1
apps/code/src/renderer/features/onboarding/components/ProjectSelectStep.tsx:170
**`font-inherit` may not be a valid Tailwind v4 utility**
`font-inherit` is not a built-in Tailwind v4 font-family utility — Tailwind maps `font-{x}` to `var(--font-x)`, so `font-inherit` would look for a `--font-inherit` CSS variable that isn't defined in `@theme`. Functionally this is harmless (font-family will naturally inherit from the parent since `appearance-none` doesn't reset it), but the class is a no-op. The correct arbitrary-value syntax for an explicit `font-family: inherit` declaration would be `font-[inherit]`. The same applies on line 262.
```suggestion
className="box-border flex w-full cursor-pointer appearance-none items-center justify-between rounded-[10px] border border-(--gray-a3) bg-(--color-panel-solid) px-[14px] py-[10px] font-[inherit] text-sm shadow-[0_1px_3px_rgba(0,0,0,0.04),0_1px_2px_rgba(0,0,0,0.02)]"
```
Reviews (1): Last reviewed commit: "Fix stacked chevrons in project select d..." | Re-trigger Greptile |
aaa1c0d to
833d5a4
Compare
jonathanlab
approved these changes
May 4, 2026
Member
Author
Merge activity
|
833d5a4 to
bc321b3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Problem
all: "unset" on dropdown buttons nukes display: flex, causing the chevron icon to stack below the label text instead of sitting inline.
Changes
How did you test this?
Manually