Skip to content

Commit 6163f5c

Browse files
committed
fix: adjust minimum width of model items in ModelsListSettings for better layout
1 parent aae82b1 commit 6163f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/settings/models-list-settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function ModelsListSettings() {
5353
) : (
5454
<div className="flex flex-col gap-2">
5555
{models.map((model, index) => (
56-
<div key={`${model.id}-${index}`} className="group px-3 py-2 border rounded-md hover:bg-accent/50 transition-colors bg-card flex flex-col justify-center min-w-[140px]">
56+
<div key={`${model.id}-${index}`} className="group px-3 py-2 border rounded-md hover:bg-accent/50 transition-colors bg-card flex flex-col justify-center min-w-35">
5757
<div className="font-mono text-xs font-medium truncate" title={model.id}>
5858
{model.id}
5959
</div>

0 commit comments

Comments
 (0)