Add bordersr to inputs
This commit is contained in:
@ -57,7 +57,7 @@ export default defineComponent({
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: 90px;" class="text-sm">
|
||||
<input type="date" v-model="TransactionDate" />
|
||||
<input class="border-b-2 border-black" type="date" v-model="TransactionDate" />
|
||||
</td>
|
||||
<td style="max-width: 150px;">
|
||||
<Autocomplete v-model="Payee" type="payees" />
|
||||
@ -66,10 +66,10 @@ export default defineComponent({
|
||||
<Autocomplete v-model="Category" type="categories" />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" v-model="Memo" />
|
||||
<input class="block w-full border-b-2 border-black" type="text" v-model="Memo" />
|
||||
</td>
|
||||
<td style="width: 80px;" class="text-right">
|
||||
<input class="text-right" type="currency" v-model="Amount" />
|
||||
<input class="text-right block w-full border-b-2 border-black" type="currency" v-model="Amount" />
|
||||
</td>
|
||||
<td style="width: 20px;">
|
||||
<input type="submit" @click="saveTransaction" value="Save" />
|
||||
|
Reference in New Issue
Block a user