feat(KB-119): complete Step 1 — fix model selector row alignment

This commit is contained in:
gsxdsm
2026-03-30 08:06:46 -07:00
parent aad9a9256c
commit e9a7941ff1
8 changed files with 185 additions and 17 deletions

View File

@@ -7453,8 +7453,14 @@ html .column.drag-over * {
margin-bottom: 12px;
}
.model-select-row:last-child {
margin-bottom: 0;
}
.model-select-label {
min-width: 70px;
width: 70px;
flex-shrink: 0;
font-size: 13px;
color: var(--text-muted);
text-align: right;
}

View File

@@ -2,7 +2,7 @@ import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
import { resolve } from "node:path";
const maxWorkers = Number.parseInt(process.env.VITEST_MAX_WORKERS ?? "4", 10);
const maxWorkers = Number.parseInt(process.env.VITEST_MAX_WORKERS ?? "8", 10);
export default defineConfig({
plugins: [react()],