fix: 봇 테이블 중간 4개 컬럼 너비 통일 (10%)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-02-06 18:09:57 +09:00
parent 47afd68921
commit 6b39cf043f

View file

@ -277,13 +277,13 @@ export const BotTable = ({ children }) => (
<table className="w-full table-fixed"> <table className="w-full table-fixed">
<thead> <thead>
<tr className="border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> <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-[30%]">이름</th> <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-[8%]">최근</th> <th className="px-4 py-3 w-[10%]">최근</th>
<th className="px-4 py-3 w-[8%]">간격</th> <th className="px-4 py-3 w-[10%]">간격</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-[14%]">액션</th> <th className="px-4 py-3 w-[12%]">액션</th>
</tr> </tr>
</thead> </thead>
<tbody>{children}</tbody> <tbody>{children}</tbody>