docs: finalize report assets and polish dashboard UI
This commit is contained in:
parent
441e709193
commit
a6edf804b4
42 changed files with 1084 additions and 406 deletions
|
|
@ -21,9 +21,10 @@ function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
|
|||
return <tr className={cn("border-b transition-colors hover:bg-muted/30", className)} {...props} />;
|
||||
}
|
||||
|
||||
function TableHead({ className, ...props }: React.ComponentProps<"th">) {
|
||||
function TableHead({ className, scope = "col", ...props }: React.ComponentProps<"th">) {
|
||||
return (
|
||||
<th
|
||||
scope={scope}
|
||||
className={cn(
|
||||
"h-10 px-3 text-left align-middle text-[11px] font-medium uppercase tracking-[0.16em] text-muted-foreground",
|
||||
className,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue