Skip to content

Commit 884c741

Browse files
committed
Fix color in the config front end
1 parent a2c4a90 commit 884c741

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

client/src/pages/ConfigurePage.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ export default function ConfigurePage() {
209209
disabled={busy}
210210
value={options.nodeVersion}
211211
onChange={(e) => setOption("nodeVersion", e.target.value)}
212-
className="rounded-md border px-3 py-2 text-sm font-mono"
212+
className="rounded-md border px-3 py-2 text-sm font-mono
213+
text-slate-900 bg-white
214+
disabled:bg-slate-100 disabled:text-slate-400"
213215
placeholder="20"
214216
/>
215217
</label>
@@ -220,7 +222,9 @@ export default function ConfigurePage() {
220222
disabled={busy}
221223
value={options.installCmd}
222224
onChange={(e) => setOption("installCmd", e.target.value)}
223-
className="rounded-md border px-3 py-2 text-sm font-mono"
225+
className="rounded-md border px-3 py-2 text-sm font-mono
226+
text-slate-900 bg-white
227+
disabled:bg-slate-100 disabled:text-slate-400"
224228
placeholder="npm ci"
225229
/>
226230
</label>
@@ -231,7 +235,9 @@ export default function ConfigurePage() {
231235
disabled={busy}
232236
value={options.testCmd}
233237
onChange={(e) => setOption("testCmd", e.target.value)}
234-
className="rounded-md border px-3 py-2 text-sm font-mono"
238+
className="rounded-md border px-3 py-2 text-sm font-mono
239+
text-slate-900 bg-white
240+
disabled:bg-slate-100 disabled:text-slate-400"
235241
placeholder="npm test"
236242
/>
237243
</label>
@@ -242,7 +248,9 @@ export default function ConfigurePage() {
242248
disabled={busy}
243249
value={options.buildCmd}
244250
onChange={(e) => setOption("buildCmd", e.target.value)}
245-
className="rounded-md border px-3 py-2 text-sm font-mono"
251+
className="rounded-md border px-3 py-2 text-sm font-mono
252+
text-slate-900 bg-white
253+
disabled:bg-slate-100 disabled:text-slate-400"
246254
placeholder="npm run build"
247255
/>
248256
</label>

0 commit comments

Comments
 (0)