From d16825f4b588d886af9832aff2947e43424e30f2 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 22 Mar 2025 05:31:25 +0000 Subject: [PATCH] Reduce padding on Transactions page Reduces the padding on the Transactions page to match the Analytics page, improving visual consistency. --- src/components/transactions/TransactionsHeader.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/transactions/TransactionsHeader.tsx b/src/components/transactions/TransactionsHeader.tsx index 43c82f5..c0c72ae 100644 --- a/src/components/transactions/TransactionsHeader.tsx +++ b/src/components/transactions/TransactionsHeader.tsx @@ -1,3 +1,4 @@ + import React from 'react'; import { Calendar, Search, ChevronLeft, ChevronRight } from 'lucide-react'; import { formatCurrency } from '@/utils/formatters'; @@ -28,8 +29,8 @@ const TransactionsHeader: React.FC = ({ // 예산 정보가 없는 경우 기본값 사용 const targetAmount = budgetData?.monthly?.targetAmount || 0; - return
-

지출 내역

+ return
+

지출 내역

{/* Search */}
@@ -70,4 +71,4 @@ const TransactionsHeader: React.FC = ({
; }; -export default TransactionsHeader; \ No newline at end of file +export default TransactionsHeader;