Add bottom margin to pages
Adds a bottom margin to the last card in the Transactions and Analytics pages.
This commit is contained in:
@@ -164,6 +164,7 @@ const Analytics = () => {
|
||||
<CategorySpendingList
|
||||
categories={categorySpending}
|
||||
totalExpense={totalExpense}
|
||||
className="mb-[50px]"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@ const Transactions = () => {
|
||||
|
||||
{/* Transactions By Date */}
|
||||
{!isLoading && transactions.length > 0 && (
|
||||
<div className="space-y-6">
|
||||
<div className="space-y-6 mb-[50px]">
|
||||
{Object.entries(groupedTransactions).map(([date, transactions]) => (
|
||||
<div key={date}>
|
||||
<div className="flex items-center gap-2 mb-3">
|
||||
|
||||
Reference in New Issue
Block a user