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:
gpt-engineer-app[bot]
2025-03-22 05:31:25 +00:00
parent 9a9c519832
commit d16825f4b5

View File

@@ -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">