Skip to content

Commit

Permalink
table bottom border 추가 (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
po4tion authored Nov 21, 2024
1 parent 64ff16e commit 034838f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/src/pages/docs/advantages/type-support-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export default function TypeSupportTable({ locale }: TypeSupportTableProps) {
<td className="px-6 py-4">JavaScript</td>
<td className="px-6 py-4">JavaScript</td>
</tr>

<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{isKorean ? 'TypeScript 지원 여부' : 'TypeScript support status'}
Expand All @@ -61,7 +62,7 @@ export default function TypeSupportTable({ locale }: TypeSupportTableProps) {
<td className="px-6 py-4">⚠️ ({partial})</td>
</tr>

<tr className="bg-white dark:bg-gray-800">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{isKorean ? '강력한 타입 시스템 제공' : 'Provide a strong type system'}
</th>
Expand All @@ -70,7 +71,7 @@ export default function TypeSupportTable({ locale }: TypeSupportTableProps) {
<td className="px-6 py-4">⚠️ ({partial})</td>
</tr>

<tr className="bg-white dark:bg-gray-800">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{isKorean ? '명확한 입력/출력 타입 제공' : 'Offer clear input/output types'}
</th>
Expand All @@ -79,7 +80,7 @@ export default function TypeSupportTable({ locale }: TypeSupportTableProps) {
<td className="px-6 py-4">❌ ({unsupported})</td>
</tr>

<tr className="bg-white dark:bg-gray-800">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{isKorean ? '주기적인 타입 업데이트' : 'Regular type updates'}
</th>
Expand All @@ -88,7 +89,7 @@ export default function TypeSupportTable({ locale }: TypeSupportTableProps) {
<td className="px-6 py-4">❌ ({unsupported})</td>
</tr>

<tr className="bg-white dark:bg-gray-800">
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{isKorean ? 'IDE 자동 완성 지원' : 'Support IDE auto-completion'}
</th>
Expand Down

0 comments on commit 034838f

Please sign in to comment.