fix: 봇 테이블 액션 컬럼 너비 조정 (20% → 16%)

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

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-[24%]">이름</th>
<th className="px-4 py-3 w-[26%]">이름</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-[20%]">액션</th>
<th className="px-4 py-3 w-[22%]">마지막 업데이트</th>
<th className="px-4 py-3 w-[16%]">액션</th>
</tr>
</thead>
<tbody>{children}</tbody>