How to set width and height to text fields inside table
-
Is there any way that I can set height of text fields inside table?
I added dense to table and fields as well, but it’s still too big.Thanks in advance.

here is my code:
<q-table title="Investicije i dinamika ulaganja" :data="myrecords" :columns="columns" row-key="name" dense hide-bottom hide-header separator="cell" virtual-scroll :pagination.sync="pagination" :rows-per-page-options="[0]" > <template v-slot:body="props"> <q-tr :props="props"> <q-td v-for="(col,index) in props.cols" :key="col.name" :props="props" > <q-input v-model.number="model" type="text" :dense="hasData" filled style="max-width: 200px" v-if="index > 0" /> <span v-else>{{ props.row.name }}</span> </q-td> </q-tr> </template>
-
@coco_jambo wrap it in a
div
.