Skip to content

Commit

Permalink
reducing padding in the cards
Browse files Browse the repository at this point in the history
  • Loading branch information
alensiljak committed Nov 7, 2024
1 parent 04311f8 commit a050766
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/FavouritesCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<strong>Favourites</strong>
</q-card-section>

<q-card-section>
<q-card-section class="q-pa-sm">
<div v-if="accounts.length === 0">
There are no favourite accounts defined
</div>
Expand Down
5 changes: 2 additions & 3 deletions src/components/JournalCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<strong>Device Journal</strong>
</q-card-section>

<q-card-section>
<q-card-section class="q-pa-sm">
<div v-if="transactions.length === 0">
There are no local transactions
</div>
Expand Down Expand Up @@ -142,5 +142,4 @@ async function loadData() {
.remarks
color: $colour2
</style>

</style>
2 changes: 1 addition & 1 deletion src/components/ScheduledTxCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<strong>Upcoming Transactions</strong>
</q-card-section>

<q-card-section>
<q-card-section class="q-pa-sm">
<div v-if="list.length === 0">There are no scheduled transactions</div>

<q-list>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SyncCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<help-circle class="icon q-mr-sm" size="20" @click="onHelpClick" />
</span>
</q-card-section>
<q-card-section>
<q-card-section class="q-pa-sm">
<div class="row">
<div class="col">
Status:
Expand Down

0 comments on commit a050766

Please sign in to comment.