Expanded on o-input in Oruga UI + Vue 3 - 46
To be able to display the expanded Oruga UI fields, simply set the expanded attribute:
src/components/CRUD/Movies/SaveComponent.vue
***
<o-input v-model="form.title" expanded></o-input>
***
<o-input v-model="form.description" type="textarea" expanded></o-input>
***
<o-select v-model="form.category_id" expanded>
I think that is what we have to do if we want to make any changes, the first thing we should do is check the official page to see what it recommends, in this case we already have an attribute that does exactly what we want to do, expand the width of the field to 100%, if not, make changes using CSS, although, it is important to clarify that you cannot define classes directly for Oruga components, you must either overwrite the style using CSS or modify the style as indicated in the official documentation.