Refactor category budget input size

Reduced the font size of the budget input in the category budget settings card.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-16 05:56:45 +00:00
parent 13bff57266
commit 6ddb192ca5

View File

@@ -34,7 +34,7 @@ const CategoryBudgetInputs: React.FC<CategoryBudgetInputsProps> = ({
value={formatWithCommas(categoryBudgets[category] || 0)}
onChange={(e) => handleInput(e, category)}
placeholder="예산 입력"
className="neuro-pressed max-w-[150px]"
className="neuro-pressed max-w-[150px] text-xs"
/>
</div>
))}