How to decrease input box for Input List Item

I would like to reduce the width of an input box for an Input List Item. The screen copy below shows that the input boxes are too wide and I haven’t figured out how to reduce the width. Could this be done in the YAML code?

Näyttökuva 2024-03-18 063410

Yes, this can be done. The first step you will need to do, is to either look at the source vue file for the input list item or use your browser developer options to view the rendered list itself. This will allow you to understand the structure of the component which you will need to be able to target the input element with CSS. Then, the second step will be to use the stylesheet component property to add the relevant CSS to the list item you want to change. You can find many examples at this point of the use of the stylesheet property on posts here in the forum.

OK, thanks for the info.