Upgrade to Tailwind CSS v4 (#1173)

This commit is contained in:
Brandon McConnell 2025-09-09 15:44:07 -04:00 committed by GitHub
parent 4ce76987a1
commit 848205f5cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
76 changed files with 1098 additions and 1050 deletions

View file

@ -56,7 +56,7 @@ export function ModelSelector({
<Button
data-testid="model-selector"
variant="outline"
className="md:px-2 md:h-[34px]"
className="md:h-[34px] md:px-2"
>
{selectedChatModel?.name}
<ChevronDownIcon />
@ -83,16 +83,16 @@ export function ModelSelector({
>
<button
type="button"
className="gap-4 group/item flex flex-row justify-between items-center w-full"
className="group/item flex w-full flex-row items-center justify-between gap-4"
>
<div className="flex flex-col gap-1 items-start">
<div className="flex flex-col items-start gap-1">
<div>{chatModel.name}</div>
<div className="text-xs text-muted-foreground">
<div className="text-muted-foreground text-xs">
{chatModel.description}
</div>
</div>
<div className="text-foreground dark:text-foreground opacity-0 group-data-[active=true]/item:opacity-100">
<div className="text-foreground opacity-0 group-data-[active=true]/item:opacity-100 dark:text-foreground">
<CheckCircleFillIcon />
</div>
</button>