File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/portal/src/components/Document Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function Table(props: { children: React.ReactNode }) {
14
14
15
15
export function Tr ( props : { children : React . ReactNode } ) {
16
16
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" >
18
18
{ props . children }
19
19
</ tr >
20
20
) ;
@@ -26,15 +26,15 @@ export function TBody(props: { children: React.ReactNode }) {
26
26
27
27
export function Th ( props : { children : React . ReactNode } ) {
28
28
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" >
30
30
{ props . children }
31
31
</ th >
32
32
) ;
33
33
}
34
34
35
35
export function Td ( props : { children : React . ReactNode } ) {
36
36
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" >
38
38
{ props . children }
39
39
</ td >
40
40
) ;
You can’t perform that action at this time.
0 commit comments