Adjust Analytics page top margin
Adjust top margin on Analytics page to match Transactions page.
This commit is contained in:
@@ -12,6 +12,7 @@ import PeriodSelector from '@/components/analytics/PeriodSelector';
|
||||
import SummaryCards from '@/components/analytics/SummaryCards';
|
||||
import MonthlyComparisonChart from '@/components/analytics/MonthlyComparisonChart';
|
||||
import CategorySpendingList from '@/components/analytics/CategorySpendingList';
|
||||
|
||||
const Analytics = () => {
|
||||
const [selectedPeriod, setSelectedPeriod] = useState('이번 달');
|
||||
const {
|
||||
@@ -118,8 +119,8 @@ const Analytics = () => {
|
||||
return <div className="min-h-screen bg-neuro-background pb-24">
|
||||
<div className="max-w-md mx-auto px-6">
|
||||
{/* Header */}
|
||||
<header className="py-8 w-full">
|
||||
<h1 className="font-bold neuro-text mb-5 text-xl">지출 분석</h1>
|
||||
<header className="py-4 w-full">
|
||||
<h1 className="font-bold neuro-text mb-3 text-xl">지출 분석</h1>
|
||||
|
||||
{/* Period Selector */}
|
||||
<PeriodSelector selectedPeriod={selectedPeriod} onPrevPeriod={handlePrevPeriod} onNextPeriod={handleNextPeriod} />
|
||||
@@ -151,4 +152,4 @@ const Analytics = () => {
|
||||
<NavBar />
|
||||
</div>;
|
||||
};
|
||||
export default Analytics;
|
||||
export default Analytics;
|
||||
|
||||
Reference in New Issue
Block a user