refactor(frontend): changed the style to be boxy and like ccc

This commit is contained in:
2026-06-23 14:24:33 -05:00
parent eea5780bb6
commit 4eef8fa418
60 changed files with 5127 additions and 1022 deletions

View File

@@ -10,7 +10,7 @@ function Table({ className, ...props }: React.ComponentProps<"table">) {
>
<table
data-slot="table"
className={cn("w-full caption-bottom text-sm", className)}
className={cn("w-full caption-bottom text-xs", className)}
{...props}
/>
</div>
@@ -55,7 +55,7 @@ function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
<tr
data-slot="table-row"
className={cn(
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
"border-b transition-colors hover:bg-muted/50 has-aria-expanded:bg-muted/50 data-[state=selected]:bg-muted",
className
)}
{...props}
@@ -96,7 +96,7 @@ function TableCaption({
return (
<caption
data-slot="table-caption"
className={cn("mt-4 text-sm text-muted-foreground", className)}
className={cn("mt-4 text-xs text-muted-foreground", className)}
{...props}
/>
)