1 parent e45ebd9 commit 2626fd3Copy full SHA for 2626fd3
1 file changed
frontend/src/components/repo/RepoCard.tsx
@@ -106,8 +106,8 @@ export function RepoCard({
106
<span>Cloning repository...</span>
107
</div>
108
)}
109
- <div className="flex gap-2 flex-wrap">
110
- <Button
+ <div className="flex gap-2">
+ <Button
111
size="sm"
112
onClick={(e) => {
113
e.stopPropagation();
@@ -127,7 +127,8 @@ export function RepoCard({
127
isWorktree={repo.isWorktree}
128
repoUrl={repo.repoUrl}
129
repoLocalPath={repo.localPath}
130
- className="h-10 sm:h-9 w-[140px] max-w-[140px]"
+ iconOnly={true}
131
+ className="h-10 sm:h-9 w-10"
132
/>
133
134
@@ -172,7 +173,8 @@ export function RepoCard({
172
173
) : (
174
<Trash2 className="w-4 h-4" />
175
- </Button> </div>
176
+ </Button>
177
+ </div>
178
179
180
0 commit comments