fix: 봇 테이블 액션 컬럼 너비 확대 (12% → 20%)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-02-06 18:16:48 +09:00
parent de3cb91191
commit 2417cd287d

View file

@ -306,13 +306,13 @@ export const BotTable = ({ children }) => (
<table className="w-full table-fixed">
<thead>
<tr className="border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
<th className="px-4 py-3 w-[28%]">이름</th>
<th className="px-4 py-3 w-[10%]">상태</th>
<th className="px-4 py-3 w-[10%]"> 추가</th>
<th className="px-4 py-3 w-[10%]">최근</th>
<th className="px-4 py-3 w-[10%]">간격</th>
<th className="px-4 py-3 w-[24%]">이름</th>
<th className="px-4 py-3 w-[9%]">상태</th>
<th className="px-4 py-3 w-[9%]"> 추가</th>
<th className="px-4 py-3 w-[9%]">최근</th>
<th className="px-4 py-3 w-[9%]">간격</th>
<th className="px-4 py-3 w-[20%]">마지막 업데이트</th>
<th className="px-4 py-3 w-[12%]">액션</th>
<th className="px-4 py-3 w-[20%]">액션</th>
</tr>
</thead>
<tbody>{children}</tbody>