mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
fix: Add w-full to Row components
This commit is contained in:
parent
27a9a3ac05
commit
60f0a3a015
@ -51,7 +51,7 @@
|
||||
</div>
|
||||
<div class="mt-2 px-6 text-base">
|
||||
<div>
|
||||
<Row class="text-gray-600" :ratio="ratio">
|
||||
<Row class="text-gray-600 w-full" :ratio="ratio">
|
||||
<div class="py-4">
|
||||
{{ _('No') }}
|
||||
</div>
|
||||
@ -59,7 +59,7 @@
|
||||
{{ df.label }}
|
||||
</div>
|
||||
</Row>
|
||||
<Row class="text-gray-900" v-for="row in doc.items" :key="row.name" :ratio="ratio">
|
||||
<Row class="text-gray-900 w-full" v-for="row in doc.items" :key="row.name" :ratio="ratio">
|
||||
<div class="py-4">
|
||||
{{ row.idx + 1 }}
|
||||
</div>
|
||||
|
@ -20,7 +20,7 @@
|
||||
<TableRow v-for="row in value" :key="row.name" v-bind="{ row, tableFields, size, ratio, isNumeric }" />
|
||||
<Row
|
||||
:ratio="ratio"
|
||||
class="text-gray-500 cursor-pointer border-transparent px-2"
|
||||
class="text-gray-500 cursor-pointer border-transparent px-2 w-full"
|
||||
v-if="!isReadOnly"
|
||||
>
|
||||
<div class="flex items-center pl-1">
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<Row
|
||||
:ratio="ratio"
|
||||
class="border-b px-2"
|
||||
class="border-b px-2 w-full"
|
||||
>
|
||||
<div class="flex items-center pl-2 text-gray-600">{{ row.idx + 1 }}</div>
|
||||
<FormControl
|
||||
|
@ -7,7 +7,7 @@
|
||||
:buttons="['close']"
|
||||
/>
|
||||
</div>
|
||||
<Row :columnCount="5" class="px-6 border-none" gap="0.5rem">
|
||||
<Row :columnCount="5" class="px-6 border-none w-full" gap="0.5rem">
|
||||
<div
|
||||
v-for="(tab, i) in tabs"
|
||||
:key="tab.label"
|
||||
|
Loading…
Reference in New Issue
Block a user