make input and output select list full width

This commit is contained in:
Joel Wetzell
2026-02-15 08:06:25 -06:00
parent 3c256dcfd1
commit 388de3097c
+2 -2
View File
@@ -16,7 +16,7 @@
<div class="flex items-center m-1">
<label class="mr-2 text-gray-300"> input: </label>
<select
class="pl-1 border-2 border-gray-200 text-gray-200 border-solid rounded-sm"
class="pl-1 border-2 border-gray-200 text-gray-200 border-solid rounded-sm w-full"
formControlName="input"
>
@for (option of moduleIds(); track option) {
@@ -33,7 +33,7 @@
<div class="flex items-center m-1">
<label class="mr-2 text-gray-300"> output: </label>
<select
class="pl-1 border-2 border-gray-200 text-gray-200 border-solid rounded-sm"
class="pl-1 border-2 border-gray-200 text-gray-200 border-solid rounded-sm w-full"
formControlName="output"
>
@for (option of moduleIds(); track option) {