表格与页面样式调整

This commit is contained in:
2026-04-11 17:12:16 +08:00
parent 4307efae98
commit 04426ba36d
33 changed files with 239 additions and 1460 deletions

View File

@@ -1,5 +1,10 @@
import type { ReactNode } from "react"
import { cn } from "@/lib/utils"
export function Page(props: { children: ReactNode }) {
return <div className="flex flex-col">{props.children}</div>
export function Page(props: { className?: string; children: ReactNode }) {
return (
<div className={cn("h-full flex flex-col p-6 gap-4", props.className)}>
{props.children}
</div>
)
}