Increase pie chart size

Make the pie charts in ExpenseChart and PaymentMethodChart components slightly larger.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 12:51:25 +00:00
parent 2a1fc6aa7a
commit eb13fa76a1
3 changed files with 9 additions and 10 deletions

View File

@@ -15,15 +15,15 @@ interface ExpenseChartProps {
const ExpenseChart: React.FC<ExpenseChartProps> = ({ data }) => {
return (
<div className="neuro-card h-64 desktop-card">
<div className="neuro-card h-72 desktop-card">
<ResponsiveContainer width="100%" height="100%">
<PieChart margin={{ left: 50, right: 30, top: 20, bottom: 20 }}>
<Pie
data={data}
cx="50%"
cy="50%"
innerRadius={40}
outerRadius={60}
innerRadius={50}
outerRadius={80}
paddingAngle={5}
dataKey="value"
labelLine={false}