mirror of https://github.com/kortix-ai/suna.git
Merge pull request #453 from kubet/fix/mobile-responsiveness
fix: responsive chat input
This commit is contained in:
commit
9c813592f3
|
@ -216,7 +216,7 @@ export const FileUploadHandler = forwardRef<
|
|||
) : (
|
||||
<Paperclip className="h-4 w-4" />
|
||||
)}
|
||||
<span className="text-sm">Attachments</span>
|
||||
<span className="text-sm sm:block hidden">Attachments</span>
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent side="top">
|
||||
|
|
|
@ -523,8 +523,8 @@ export const ModelSelector: React.FC<ModelSelectorProps> = ({
|
|||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
)}
|
||||
<span>{selectedLabel}</span>
|
||||
<ChevronDown className="h-3 w-3 opacity-50 ml-1" />
|
||||
<span className="truncate max-w-[120px] sm:max-w-[160px] md:max-w-[200px] lg:max-w-none">{selectedLabel}</span>
|
||||
<ChevronDown className="h-3 w-3 opacity-50 ml-1 flex-shrink-0" />
|
||||
</div>
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
|
|
Loading…
Reference in New Issue