2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

fix: UI alignment

This commit is contained in:
Faris Ansari 2019-11-28 00:09:30 +05:30
parent d5a88398a8
commit e7aef6d5ee

View File

@ -1,6 +1,6 @@
<template>
<div class="flex -mx-4">
<div class="w-1/2 px-4" v-for="invoice in invoices" :key="invoice.title">
<div class="w-1/2 px-4 flex flex-col justify-between" v-for="invoice in invoices" :key="invoice.title">
<SectionHeader>
<template slot="title">{{ invoice.title }}</template>
<PeriodSelector
@ -19,6 +19,7 @@
<feather-icon name="plus" class="w-4 h-4 text-white" />
</Button>
</SectionHeader>
<div>
<div class="mt-6 flex justify-between">
<div
class="text-sm"
@ -60,6 +61,7 @@
</div>
</div>
</div>
</div>
</template>
<script>
import frappe from 'frappejs';