From 77950e48c76f4a3b29d01831d43039caba29888a Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期二, 18 十一月 2025 14:12:42 +0800
Subject: [PATCH] 修改
---
app/init/page.tsx | 17 +++++++++++------
1 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/app/init/page.tsx b/app/init/page.tsx
index c3d439f..37ac180 100644
--- a/app/init/page.tsx
+++ b/app/init/page.tsx
@@ -1,14 +1,19 @@
import React from 'react'
+import style from '../signin/page.module.css'
import InitPasswordPopup from './InitPasswordPopup'
-import cn from '@/utils/classnames'
+import classNames from '@/utils/classnames'
const Install = () => {
return (
- <div className={cn('flex min-h-screen w-full justify-center bg-background-default-burn p-6')}>
- <div className={cn('flex w-full shrink-0 flex-col rounded-2xl border border-effects-highlight bg-background-default-subtle')}>
- <div className="m-auto block w-96">
- <InitPasswordPopup />
- </div>
+ <div className={classNames(
+ style.background,
+ 'flex w-full min-h-screen',
+ 'p-4 lg:p-8',
+ 'gap-x-20',
+ 'justify-center lg:justify-start',
+ )}>
+ <div className="block m-auto w-96">
+ <InitPasswordPopup />
</div>
</div>
)
--
Gitblit v1.8.0