I am facing an issue with a select control that needs to be aligned on the right side of the screen. Despite using HTML and CSS to achieve this, there is strange behavior when I initially click on the control. It breaks the options layout, but as I navigate through the options, the control expands until there are no more line breaks:
<div id="q-app">
<q-card bordered class="my-card justify-between ">
<q-card-section class="row justify-between items-center bg-grey-2 q-pa-none">
<q-item class="col-8 q-pa-none" style="background-color: #f5f5f5;">
</q-item>
<q-item class="col-4 q-pa-none" style="background-color: #f5f5f5;">
<q-item-section>
<div class="row items-center q-pa-sm col-12 justify-center ">
<label class="text-weight-bold text-primary text-h5 q-mr-sm">Evento:</label>
<q-select v-model="model" class="col-grow" :options="listaEventos" >
</q-select>
</div>
</q-item-section>
</q-item>
</q-card-section>
</q-card>
</div>
I am seeking assistance in resolving this unusual behavior. Your help is greatly appreciated. Thank you.