Reduce padding on Transactions page
Reduces the padding on the Transactions page to match the Analytics page, improving visual consistency.
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Calendar, Search, ChevronLeft, ChevronRight } from 'lucide-react';
|
import { Calendar, Search, ChevronLeft, ChevronRight } from 'lucide-react';
|
||||||
import { formatCurrency } from '@/utils/formatters';
|
import { formatCurrency } from '@/utils/formatters';
|
||||||
@@ -28,8 +29,8 @@ const TransactionsHeader: React.FC<TransactionsHeaderProps> = ({
|
|||||||
|
|
||||||
// 예산 정보가 없는 경우 기본값 사용
|
// 예산 정보가 없는 경우 기본값 사용
|
||||||
const targetAmount = budgetData?.monthly?.targetAmount || 0;
|
const targetAmount = budgetData?.monthly?.targetAmount || 0;
|
||||||
return <header className="py-8">
|
return <header className="py-4">
|
||||||
<h1 className="font-bold neuro-text mb-5 text-xl py-[10px]">지출 내역</h1>
|
<h1 className="font-bold neuro-text mb-3 text-xl py-[10px]">지출 내역</h1>
|
||||||
|
|
||||||
{/* Search */}
|
{/* Search */}
|
||||||
<div className="neuro-pressed mb-5 flex items-center px-4 py-3 rounded-xl">
|
<div className="neuro-pressed mb-5 flex items-center px-4 py-3 rounded-xl">
|
||||||
|
|||||||
Reference in New Issue
Block a user