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