Enhance budget input UI

- Improve the '+' icon for budget modification.
- Display the sum of category budgets instead of an input field for the total budget.
- Change the wallet icon in budget input.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-17 12:17:32 +00:00
parent c7300bebb7
commit 236925f787
3 changed files with 54 additions and 24 deletions

View File

@@ -24,7 +24,7 @@ const BudgetCategoriesSection: React.FC<BudgetCategoriesSectionProps> = ({
const actualPercentage = category.total > 0
? Math.round((category.current / category.total) * 100)
: 0;
// 프로그레스 바용 퍼센트 (100%로 제한하지 않음)
// 프로그레스 바용 퍼센트 - 제한 없이 실제 퍼센트 표시
const displayPercentage = actualPercentage;
// 예산이 얼마 남지 않은 경우 (10% 미만)