fix: [ecard] Blade 템플릿에서 React inline style 충돌 수정

- style={{width:'60px'}} → Tailwind 클래스(w-16, w-36, w-10)로 교체
- Blade의 {{ }} echo 문법과 JSX inline style 충돌 해소
This commit is contained in:
김보곤
2026-02-24 14:12:31 +09:00
parent 7954c24aa4
commit ee8596db7c

View File

@@ -744,11 +744,11 @@ className="flex-1 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 t
<table className="w-full text-sm border border-stone-200 rounded-lg overflow-hidden">
<thead>
<tr className="bg-stone-100">
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200" style={{width:'60px'}}>/</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200 w-16">/</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200">계정과목</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200" style={{width:'140px'}}>차변금액</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200" style={{width:'140px'}}>대변금액</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200" style={{width:'40px'}}></th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200 w-36">차변금액</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200 w-36">대변금액</th>
<th className="px-3 py-2 text-center text-xs font-semibold text-stone-600 border-b border-stone-200 w-10"></th>
</tr>
</thead>
<tbody>