2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 11:29:03 +00:00

ui: dashboard font weights

This commit is contained in:
18alantom 2022-06-19 12:24:14 +05:30
parent fdd073ffb8
commit 07cf3b5192
3 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
<div>
<!-- Title and Period Selector -->
<div class="flex items-center justify-between">
<div class="font-medium text-base">{{ t`Cashflow` }}</div>
<div class="font-semibold text-base">{{ t`Cashflow` }}</div>
<!-- Chart Legend -->
<div class="flex text-base gap-8" v-if="hasData">

View File

@ -1,6 +1,6 @@
<template>
<div class="flex items-baseline justify-between">
<span class="font-medium text-base"><slot name="title"></slot></span>
<span class="font-semibold text-base"><slot name="title"></slot></span>
<slot name="action"></slot>
</div>
</template>

View File

@ -32,22 +32,22 @@
<div class="flex justify-between">
<!-- Paid -->
<div
class="text-sm bold"
class="text-sm font-medium"
:class="{ 'bg-gray-200 text-gray-200 rounded': !invoice.count }"
>
{{ fyo.format(invoice.paid, 'Currency') }}
<span :class="{ 'text-gray-900': invoice.count }">{{
<span :class="{ 'text-gray-900 font-normal': invoice.count }">{{
t`Paid`
}}</span>
</div>
<!-- Unpaid -->
<div
class="text-sm"
class="text-sm font-medium"
:class="{ 'bg-gray-200 text-gray-200 rounded': !invoice.count }"
>
{{ fyo.format(invoice.unpaid, 'Currency') }}
<span :class="{ 'text-gray-900': invoice.count }">{{
<span :class="{ 'text-gray-900 font-normal': invoice.count }">{{
t`Unpaid`
}}</span>
</div>
@ -153,7 +153,7 @@ export default {
count: 0,
unpaidCount: 0,
paidCount: 0,
color: 'gray',
color: 'pink',
periodKey: 'purchaseInvoicePeriod',
barWidth: 60,
},