fix:공제 선택 필드 너비 2배로 증가 (70px → 140px)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-23 15:36:49 +09:00
parent 39c97e2cb5
commit 0dbd72bfec

View File

@@ -648,7 +648,7 @@ className="p-1.5 text-purple-500 hover:bg-purple-100 rounded-lg transition-color
<select
value={log.deductionType || (log.merchantBizNum ? 'deductible' : 'non_deductible')}
onChange={(e) => onFieldChange(index, 'deductionType', e.target.value)}
className={`px-3 py-1.5 rounded text-sm font-bold border-0 cursor-pointer min-w-[70px] ${
className={`px-3 py-1.5 rounded text-sm font-bold border-0 cursor-pointer min-w-[140px] ${
(log.deductionType || (log.merchantBizNum ? 'deductible' : 'non_deductible')) === 'deductible'
? 'bg-green-100 text-green-700'
: 'bg-red-500 text-white'