This commit is contained in:
quantulr
2023-11-03 17:25:10 +08:00
parent 2423f8c2e8
commit b6a722fa79
62 changed files with 415 additions and 260 deletions

View File

@ -10,9 +10,9 @@ const breadcrumb = [
const Layout = ({ children }: { children: ReactNode }) => {
return (
<div className={"flex flex-col h-full"}>
<div className={"flex h-full flex-col"}>
<Breadcrumb navigations={breadcrumb} />
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
<div className={"mt-2 flex-1 bg-white px-5 py-4"}>{children}</div>
</div>
);
};

View File

@ -4,9 +4,9 @@ const Page = () => {
return (
<>
<ArticleHeading text={"综合办公室"} />
<p className={"text-base indent-8 my-1"}>
<p className={"my-1 indent-8 text-base"}>
<ol className={"list-decimal list-inside"}>
<ol className={"list-inside list-decimal"}>
<li>
</li>
@ -32,7 +32,7 @@ const Page = () => {
<li></li>
</ol>
</p>
<p className={"text-base indent-8 my-1"}>
<p className={"my-1 indent-8 text-base"}>
</p>
</>