Skip to content

Commit 70f051d

Browse files
committed
1 parent 8abcf3d commit 70f051d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/portal/src/components/Document/Table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function Table(props: { children: React.ReactNode }) {
1414

1515
export function Tr(props: { children: React.ReactNode }) {
1616
return (
17-
<tr className="border-b p-4 pb-3 pl-8 pt-0 text-left font-medium text-f-200">
17+
<tr className="text-f-200 border-b p-4 pb-3 pl-8 pt-0 text-left font-medium">
1818
{props.children}
1919
</tr>
2020
);
@@ -26,15 +26,15 @@ export function TBody(props: { children: React.ReactNode }) {
2626

2727
export function Th(props: { children: React.ReactNode }) {
2828
return (
29-
<th className="border-b bg-b-700 p-4 pb-3 pl-8 text-left text-base font-semibold text-f-100">
29+
<th className="bg-b-700 text-f-100 border-b p-4 pb-3 pl-8 text-left text-base font-semibold">
3030
{props.children}
3131
</th>
3232
);
3333
}
3434

3535
export function Td(props: { children: React.ReactNode }) {
3636
return (
37-
<td className="w-min p-4 pl-8 text-base leading-relaxed text-f-200">
37+
<td className="text-f-200 p-4 pl-8 text-base leading-relaxed">
3838
{props.children}
3939
</td>
4040
);

0 commit comments

Comments
 (0)