Small tweaks for mobile styles (#8228)

This commit is contained in:
Robert Brennan 2025-05-03 17:42:02 -04:00 committed by GitHub
parent 0bab3b62f2
commit f45f398d81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -20,7 +20,7 @@ export function Controls({ setSecurityOpen, showSecurityLock }: ControlsProps) {
useAutoTitle();
return (
<div className="flex items-center justify-between">
<div className="flex flex-col gap-2 md:items-center md:justify-between md:flex-row">
<div className="flex items-center gap-2">
<AgentControlBar />
<AgentStatusBar />

View File

@ -164,7 +164,7 @@ export function ConversationCard({
className={cn(
"h-[100px] w-full px-[18px] py-4 border-b border-neutral-600 cursor-pointer",
variant === "compact" &&
"h-auto w-fit rounded-xl border border-[#525252]",
"md:w-fit h-auto rounded-xl border border-[#525252]",
)}
>
<div className="flex items-center justify-between w-full">

View File

@ -22,10 +22,11 @@ function HomeScreen() {
<hr className="border-[#717888]" />
<main className="flex flex-col md:flex-row justify-between gap-4">
<main className="flex flex-col md:flex-row justify-between gap-8">
<RepoConnector
onRepoSelection={(title) => setSelectedRepoTitle(title)}
/>
<hr className="md:hidden border-[#717888]" />
{providersAreSet && <TaskSuggestions filterFor={selectedRepoTitle} />}
</main>
</div>