Improve layout of Account

This commit is contained in:
2022-01-28 10:46:56 +00:00
parent a45d02f9e0
commit 58683a33fb
2 changed files with 15 additions and 15 deletions

View File

@ -29,16 +29,22 @@ export default {
<td>
{{transaction.GroupID ? "☀" : ""}}
</td>
<td>
<td class="cutoff">
<a :href="'/budget/'+$store.getters.CurrentBudget.ID+'/transaction/'+transaction.ID">{{transaction.Memo}}</a>
</td>
<td>
{{transaction.Amount.Int / 100}}
</td>
<td>
{{transaction.Status}}
{{transaction.Status == "Reconciled" ? "✔" : (transaction.Status == "Uncleared" ? "" : "*")}}
</td>
</tr>
</table>
</v-container>
</template>
</template>
<style>
table {width: 100%; table-layout:fixed}
td {overflow: hidden; white-space: nowrap;}
td.cutoff {width: 100px;}
</style>