This commit is contained in:
Rao 2025-02-27 23:56:13 +08:00
parent e580f0ea44
commit e7013895ef
1 changed files with 5 additions and 5 deletions

View File

@ -170,11 +170,11 @@ export default function MindEditor({ id }: { id?: string }) {
return (
<div className={` flex-col flex border rounded-xl overflow-hidden`}>
<div className={` flex-col flex `}>
{canEdit && taxonomies && (
<Form
form={form}
className=" bg-white p-4 ">
className=" bg-white p-4 border-b">
<div className="flex items-center justify-between gap-4">
<div className="flex items-center gap-4">
{taxonomies.map((tax, index) => (
@ -224,7 +224,7 @@ export default function MindEditor({ id }: { id?: string }) {
isLoading && (
<div
className="py-64 justify-center flex"
style={{ height: "calc(100vh - 287px)" }}>
style={{ height: "calc(100vh - 271px)" }}>
<Spin size="large"></Spin>
</div>
)
@ -233,7 +233,7 @@ export default function MindEditor({ id }: { id?: string }) {
!post && id && !isLoading && (
<div
className="py-64"
style={{ height: "calc(100vh - 287px)" }}>
style={{ height: "calc(100vh - 271px)" }}>
<Empty></Empty>
</div>
)